Skip to content

ft!: change behaviour to allow algorithms with immutable state (#19) #14

ft!: change behaviour to allow algorithms with immutable state (#19)

ft!: change behaviour to allow algorithms with immutable state (#19) #14

Workflow file for this run

name: Changelog
on:
push:
branches: [ main ]
jobs:
update-changelog:
name: Update changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Generate a changelog
uses: orhun/git-cliff-action@v2
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
- name: Commit
run: |
git config user.email ""
git config user.name "GitHub Action Bot"
git diff -- CHANGELOG.md
git commit -m "chore: update CHANGELOG [skip ci]" CHANGELOG.md && git push origin main || true