v1.1.29 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Post release | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
- created | |
- edited | |
- unpublished | |
- prereleased | |
jobs: | |
update-release-changelog: | |
name: Update release changelog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update release changelog | |
run: | | |
export VERSION=$(git tag --sort=-committerdate | head -1) | |
export PREVIOUS_VERSION=$(git tag --sort=-committerdate | head -2 | awk '{split($0, tags, "\n")} END {print tags[1]}') | |
export CHANGES=$(git log --pretty="- %s" $VERSION...$PREVIOUS_VERSION) | |
printf "# 🎁 Release notes (\`$VERSION\`)\n\n## Changes\n$CHANGES\n\n## Metadata\n\`\`\`\nThis version -------- $VERSION\nPrevious version ---- $PREVIOUS_VERSION\nTotal commits ------- $(echo "$CHANGES" | wc -l)\n\`\`\`\n" > release_notes.md | |
- name: Add Test Report to Release | |
uses: irongut/EditRelease@v1.2.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
id: ${{ github.event.release.id }} | |
body: $(cat release_notes.md) | |
files: 'release_notes.md' | |
replacebody: true |