Skip to content

Commit a9c9747

Browse files
committed
improve git log messages
1 parent a8d78fd commit a9c9747

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • .github/actions/build-alpha-release-notes

.github/actions/build-alpha-release-notes/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ runs:
2828
echo
2929
git log "${{ inputs.latest-tag }}..HEAD" \
3030
--oneline \
31-
--no-merges \
32-
--author='^(?!github-actions\[bot\]|dependabot\[bot\]).*$'
31+
--no-merges |
32+
grep -v -E 'github-actions\[bot\]|dependabot\[bot\]' |
33+
awk '!seen[$0]++'
3334
} > docs/release.md
3435
- name: Upload UI artifact
3536
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)