We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d78fd commit a9c9747Copy full SHA for a9c9747
1 file changed
.github/actions/build-alpha-release-notes/action.yml
@@ -28,8 +28,9 @@ runs:
28
echo
29
git log "${{ inputs.latest-tag }}..HEAD" \
30
--oneline \
31
- --no-merges \
32
- --author='^(?!github-actions\[bot\]|dependabot\[bot\]).*$'
+ --no-merges |
+ grep -v -E 'github-actions\[bot\]|dependabot\[bot\]' |
33
+ awk '!seen[$0]++'
34
} > docs/release.md
35
- name: Upload UI artifact
36
uses: actions/upload-artifact@v4
0 commit comments