Skip to content

Commit

Permalink
Add post-release.yml to update changelogs automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanbabbar04 committed Jan 28, 2025
1 parent 6b66691 commit 5b6cd7e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Post-release
on:
release:
types: [published, released]
workflow_dispatch:

jobs:
changelog:
name: Update changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- uses: rhysd/changelog-from-release/action@v3
with:
file: CHANGELOG.md
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_summary_template: 'update changelog for %s changes'

0 comments on commit 5b6cd7e

Please sign in to comment.