Skip to content

Update Change Log #1

Update Change Log

Update Change Log #1

Workflow file for this run

name: "Update Change Log"
on:
workflow_dispatch:
jobs:
build:
name: Rebuild Change Log
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Commit updated change log
run: |
python3.13 -m pip install -r requirements.txt
gitchangelog > CHANGELOG.md
git config user.name github-actions
git config user.email github-actions@github.com
git add CHANGELOG.md
git commit -m "doc: update CHANGELOG.md" || exit 0
git push