mirror of
https://github.com/Kong/insomnia.git
synced 2026-02-14 16:13:00 -05:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
# .github/workflows/update-changelog.yaml
|
|
name: 'Update Changelog'
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
|
# updated CHANGELOG back to the repository.
|
|
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.release.target_commitish }}
|
|
|
|
- name: Update Changelog
|
|
uses: stefanzweifel/changelog-updater-action@a938690fad7edf25368f37e43a1ed1b34303eb36 # v1
|
|
with:
|
|
latest-version: ${{ github.event.release.tag_name }}
|
|
release-notes: ${{ github.event.release.body }}
|
|
|
|
- name: Commit updated CHANGELOG
|
|
uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5
|
|
with:
|
|
branch: ${{ github.event.release.target_commitish }}
|
|
commit_message: Update CHANGELOG
|
|
file_pattern: CHANGELOG.md
|