From 67e140c5bfa282ce324d198ae3e03a0c25c61e04 Mon Sep 17 00:00:00 2001 From: frank zhu Date: Fri, 12 Apr 2024 08:31:46 -0700 Subject: [PATCH] chore: add more changeset tags (#12801) --- .github/scripts/check-changeset-tags.sh | 4 +++- .github/workflows/changeset.yml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/scripts/check-changeset-tags.sh b/.github/scripts/check-changeset-tags.sh index 5401dc65404..579661fe704 100755 --- a/.github/scripts/check-changeset-tags.sh +++ b/.github/scripts/check-changeset-tags.sh @@ -12,6 +12,8 @@ # #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." @@ -19,7 +21,7 @@ if [ $# -eq 0 ]; then 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 diff --git a/.github/workflows/changeset.yml b/.github/workflows/changeset.yml index 4f721ea8e00..9ad49fe343e 100644 --- a/.github/workflows/changeset.yml +++ b/.github/workflows/changeset.yml @@ -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.