Skip to content

v0.1.3

v0.1.3 #4

name: Update Changelog
on:
release:
types: [released]
jobs:
update:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.release.target_commitish }}
- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1
with:
release-notes: ${{ github.event.release.body }}
latest-version: ${{ github.event.release.tag_name }}
- name: Commit updated Changelog
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'docs: Update changelog'
file_pattern: CHANGELOG.md
branch: ${{ github.event.release.target_commitish }}