Merge pull request #561 from elezar/update-generate-changelog

[no-relnote] Update generate changelog filter
This commit is contained in:
Evan Lezar 2024-06-24 13:04:55 +02:00 committed by GitHub
commit bbc5363009
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,4 +77,4 @@ echo ""
echo "### Version $VERSION"
# Iterate over the commit messages and ignore the ones that start with "Merge" or "Bump"
git log --pretty=format:"%s" $REFERENCE..@ | grep -Ev "(^Merge )|(^Bump)" | sed 's/^\(.*\)/- \1/g'
git log --pretty=format:"%s" $REFERENCE..@ | grep -Ev "(^Merge )|(^Bump)|(no-rel-?note)|(^---)" | sed 's/^\(.*\)/- \1/g'