We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87cf18a commit deba939Copy full SHA for deba939
1 file changed
.github/actions/build-alpha-release-notes/action.yml
@@ -27,12 +27,12 @@ runs:
27
git log "${{ inputs.latest-tag }}..HEAD" \
28
--oneline \
29
--no-merges |
30
- grep -v -E 'github-actions\[bot\]|dependabot\[bot\]|test|Bump' |
+ grep -v -E 'github-actions\[bot\]|dependabot\[bot\]|test|Bump|chore' || true |
31
sed 's/^[a-f0-9]\{7,40\} //' | # remove SHA prefix
32
awk '!seen[$0]++' |
33
sed 's/^/- /'
34
} > docs/release.md
35
- - name: Upload UI artifact
+ - name: Upload release notes
36
uses: actions/upload-artifact@v4
37
with:
38
name: release-notes
0 commit comments