Skip to content

ci: add semantic commit config #16

ci: add semantic commit config

ci: add semantic commit config #16

Workflow file for this run

---
name: changes
"on":
push:
branches:
- master
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Build changelog
uses: actionhippie/calens@v1
with:
target: CHANGELOG.md
- name: Commit changes
id: commit
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: [email protected]
add: CHANGELOG.md
message: "docs: automated changelog update"
push: true
commit: --signoff
...