2021-09-10 17:54:41 +00:00
|
|
|
name: "Update Changelog"
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [released]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-02-11 11:23:24 +00:00
|
|
|
permissions:
|
|
|
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
2023-02-11 20:14:56 +00:00
|
|
|
# updated CHANGELOG back to the repository.
|
2023-02-11 11:23:24 +00:00
|
|
|
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
|
|
|
|
contents: write
|
|
|
|
|
2021-09-10 17:54:41 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2022-10-26 17:03:57 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-09-10 17:54:41 +00:00
|
|
|
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
|