Skip to content

Commit

Permalink
ci: include chore type
Browse files Browse the repository at this point in the history
  • Loading branch information
aldis-ameriks committed Oct 22, 2020
1 parent b1a2f20 commit eab1bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: changelog
run: |
prev_tag=$(git describe --abbrev=0 --tags ${{ github.ref }}^)
log=$(git log --pretty="format:%s %H" $prev_tag..${{ github.ref }} | grep -E "^(docs|fix|feat|test|refactor|build|ci|perf|style):" | sort -g | awk '{print $(NF)}' | xargs git show --no-patch --decorate=no --oneline)
log=$(git log --pretty="format:%s %H" $prev_tag..${{ github.ref }} | grep -E "^(docs|fix|feat|test|refactor|build|ci|perf|style|chore):" | sort -g | awk '{print $(NF)}' | xargs git show --no-patch --decorate=no --oneline)
log="${log//'%'/'%25'}"
log="${log//$'\n'/'%0A'}"
log="${log//$'\r'/'%0D'}"
Expand Down

0 comments on commit eab1bc2

Please sign in to comment.