docs: add changelog breaking_change type

This commit is contained in:
Guido Grazioli 2022-03-31 15:54:30 +02:00
commit bada6f4073
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B
2 changed files with 4 additions and 4 deletions

View file

@ -56,7 +56,7 @@ jobs:
- name: Scan PR merges from latest tag
run: |
TYPES=("minor_changes" "major_changes" "bugfixes" "deprecated_features" "removed_features")
TYPES=("minor_changes" "major_changes" "bugfixes" "deprecated_features" "removed_features" "breaking_changes")
TAG=$(git describe --abbrev=0 --tags)
PRS=($(comm -12 <(git log --oneline ${TAG}.. --format="tformat:%H" | sort ) <(hub pr list -s all -f '%sm%n' --color=never | sort )))
IFS=$'\n' FRAGMENTS=($(hub pr list -s all -f '%sm~%I~%L~%t~%n' --color=never| grep -P "$(echo "^(${PRS[@]})" | tr ' ' '|')"))