Add update-changelog Workflow

This commit is contained in:
Stefan Zweifel 2021-09-10 19:54:41 +02:00
parent b8ff4cd716
commit 983386a337
1 changed files with 28 additions and 0 deletions

28
.github/workflows/update-changelog.yaml vendored Normal file
View File

@ -0,0 +1,28 @@
name: "Update Changelog"
on:
release:
types: [released]
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: master
- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1
with:
release-notes: ${{ github.event.release.body }}
latest-version: ${{ github.event.release.name }}
- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: master
commit_message: Update CHANGELOG
file_pattern: CHANGELOG.md