Skip to content

Commit

Permalink
Add release creation notes workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
inFocus7 committed Jan 21, 2024
1 parent b88a7fb commit e6e008c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/release-creation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Release Created

on:
release:
types: [created]

jobs:
update-release-notes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate Changelog
id: changelog
uses: infocus7/[email protected]
with:
changelog-directory: 'changelogs'
release-tag-name: ${{ github.ref_name }}
- name: Download Changelog # This is needed because the action outputs the changelog to an artifact (file).
uses: actions/download-artifact@v2
with:
name: changelog
- name: Update Release Notes
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_NAME: ${{ github.repository }}
RELEASE_ID: ${{ github.event.release.id }}
run: |
changelog_content=$(jq -Rs . < changelog_output.md) # Convert the changelog to a JSON string so we can send it.
curl -L -X PATCH \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
"https://api.github.com/repos/$REPO_NAME/releases/$RELEASE_ID" \
-d "{\"body\": $changelog_content}"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Release Published

on:
release:
Expand Down
4 changes: 4 additions & 0 deletions changelogs/v1.0.0-beta4
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
enhancement:
- Add support for video preview generation when creating a music cover video.
ci:
- Add changelog generation automation.

0 comments on commit e6e008c

Please sign in to comment.