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.