We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e022989 commit fea98aeCopy full SHA for fea98ae
.github/workflows/release.yml
@@ -45,7 +45,7 @@ jobs:
45
GH_TOKEN: ${{ github.token }}
46
run: |
47
echo -e "Changelog\n---------" > changelog.txt
48
- git log --reverse --pretty=format:"%h %s" $(git describe --tags --abbrev=0 HEAD^)..HEAD >> changelog.txt
+ git log --reverse --pretty=format:"- %h: %s" $(git describe --tags --abbrev=0 HEAD^)..HEAD | egrep -v 'fix:|minor:|typo:' >> changelog.txt
49
50
gh release create ${{ github.ref_name }} \
51
--verify-tag \
0 commit comments