We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a177ca commit 4b8c95dCopy full SHA for 4b8c95d
.github/workflows/module_release.yml
@@ -84,7 +84,11 @@ jobs:
84
run: |
85
export GH_HOST=github.com
86
gh extension install chelnak/gh-changelog
87
- gh changelog get --latest | sed -e "1,/^\[Full Changelog\]/ d" > OUTPUT.md
+ # TODO replace sed when gh-changelog supports templates
88
+ gh changelog get --latest | \
89
+ sed -e "1,/^\[Full Changelog\]/ d" \
90
+ -e 's/(\[\([^]]*\)\]([^)]*))$/@\1/g' \
91
+ -e 's/\[#\([0-9]*\)\]([^)]*)/#\1/g' > OUTPUT.md
92
echo "::group::release notes"
93
cat OUTPUT.md
94
echo "::endgroup::"
0 commit comments