Skip to content

update generate-changelog to specify a branch to checkout to before c… #7

update generate-changelog to specify a branch to checkout to before c…

update generate-changelog to specify a branch to checkout to before c… #7

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 }}
- name: Checkout to branch
run: |
git checkout "${GITHUB_REF#refs/heads/}"
- name: Commit Changelog
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: update changelog"
branch: ${{ github.head_ref || github.ref_name }}
file_pattern: "CHANGELOG.md"
commit_author: "GitHub Action <[email protected]>"