Skip to content

Commit

Permalink
chore: add more changeset tags (#12801)
Browse files Browse the repository at this point in the history
  • Loading branch information
momentmaker authored Apr 12, 2024
1 parent 521a035 commit 67e140c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/check-changeset-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@
# #breaking_change : For any functionality that requires manual action for the node to boot.
# #db_update : For any feature that introduces updates to database schema.
# #wip : For any change that is not ready yet and external communication about it should be held off till it is feature complete.
# #bugfix - For bug fixes.
# #internal - For changesets that need to be excluded from the final changelog.

if [ $# -eq 0 ]; then
echo "Error: No changeset file path provided."
exit 1
fi

CHANGESET_FILE_PATH=$1
tags_list=( "#nops" "#added" "#changed" "#removed" "#updated" "#deprecation_notice" "#breaking_change" "#db_update" "#wip" )
tags_list=( "#nops" "#added" "#changed" "#removed" "#updated" "#deprecation_notice" "#breaking_change" "#db_update" "#wip" "#bugfix" "#internal" )
has_tags=false

if [[ ! -f "$CHANGESET_FILE_PATH" ]]; then
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
#breaking_change : For any functionality that requires manual action for the node to boot.
#db_update : For any feature that introduces updates to database schema.
#wip : For any change that is not ready yet and external communication about it should be held off till it is feature complete.
#bugfix - For bug fixes.
#internal - For changesets that need to be excluded from the final changelog.
# For security reasons, GITHUB_TOKEN is read-only on forks, so we cannot leave comments on PRs.
# This check skips the job if it is detected we are running on a fork.
Expand Down

0 comments on commit 67e140c

Please sign in to comment.