Skip to content

Commit

Permalink
chore: add caution message to doc-deploy-changelog action (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
klmcadams authored Oct 4, 2024
1 parent 479443d commit e40b18d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc-deploy-changelog/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,13 @@ runs:
else
pr_title="CHORE: update CHANGELOG for v${{ env.TAG_VERSION }}"
fi
gh pr create --title "$pr_title" --body "Update CHANGELOG for v${{ env.TAG_VERSION }} and remove .md files in ${{ env.TOWNCRIER_DIR }}" --reviewer ${{ github.actor }}
body_msg="Update CHANGELOG for v${{ env.TAG_VERSION }} and remove .md files in ${{ env.TOWNCRIER_DIR }}.
> [!CAUTION]
> Do not merge this pull request until the release has been successfully made."
gh pr create --title "$pr_title" --body "$body_msg" --reviewer ${{ github.actor }}
- name: "Delete & Re-create tag"
env:
Expand Down

0 comments on commit e40b18d

Please sign in to comment.