mirror of
https://github.com/logos-storage/nim-serde.git
synced 2026-01-03 22:23:11 +00:00
27 lines
657 B
YAML
27 lines
657 B
YAML
name: changelog
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
generate:
|
|
name: Generate changelog
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: "✏️ Generate release changelog"
|
|
uses: heinrichreimer/action-github-changelog-generator@v2.3
|
|
with:
|
|
token: ${{ secrets.CHANGELOG_GITHUB_TOKEN }}
|
|
- name: Commit CHANGELOG.md
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
branch: master
|
|
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
|
|
file_pattern: CHANGELOG.md
|