Skip to content

Commit

Permalink
ci: exclude refactor commits from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Aug 19, 2024
1 parent e6a328b commit 849424f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: update changelog
run: |
git log :/bump.. --format="- %cs %s" | # commits since last `bump` commit
grep -vE "build|ci|style|bump" | # don't include internal changes
grep -vE "build|ci|refactor|style|bump" | # don't include internal changes
sed -E "s/^(- [0-9-]+) ([^ ]+): /\1 **\2**: /" >> "temp.md" # bold cc keyword
grep -v "^$" "Changelog.md" >> "temp.md"
mv -f "temp.md" "Changelog.md"
Expand Down

0 comments on commit 849424f

Please sign in to comment.