Skip to content

release: bump version to 1.2.4 #11

release: bump version to 1.2.4

release: bump version to 1.2.4 #11

Workflow file for this run

name: Changelog
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate CHANGELOG
run: |
git log --pretty=format:"- %s (%h)" HEAD~20..HEAD > CHANGELOG.md
- name: Commit CHANGELOG
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add CHANGELOG.md
git commit -m "docs: update CHANGELOG" || echo "No changes"