Skip to content

update last param of generate-changelog action to reference the actio… #6

update last param of generate-changelog action to reference the actio…

update last param of generate-changelog action to reference the actio… #6

name: Generate Changelog
on:
push:
tags:
- '*'
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Generate Changelog
run: |
export PATH="$PATH:/home/runner/.local/share/gem/ruby/3.0.0/bin"
gem install --user-install github_changelog_generator
github_changelog_generator \
-u ${{ github.repository_owner }} \
-p ${{ github.event.repository.name }} \
--token ${{ secrets.CHANGELOG_GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: update changelog"
branch: ${{ github.head_ref }}
file_pattern: "CHANGELOG.md"
commit_author: "GitHub Action <[email protected]>"