name: update-changelog on: release: types: [released] permissions: contents: write jobs: update: runs-on: ubuntu-latest steps: # persist-credentials: true is required so `git-auto-commit-action` below # can push the CHANGELOG update. - name: Checkout code uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 # zizmor: ignore[artipacked] with: ref: main - name: Update Changelog uses: stefanzweifel/changelog-updater-action@a938690fad7edf25368f37e43a1ed1b34303eb36 # v1.12.0 with: latest-version: ${{ github.event.release.name }} release-notes: ${{ github.event.release.body }} - name: Commit updated CHANGELOG uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0 with: branch: main commit_message: Update CHANGELOG file_pattern: CHANGELOG.md