Skip to content

ci(tools): update actions/checkout digest to 1d96c77 #82

ci(tools): update actions/checkout digest to 1d96c77

ci(tools): update actions/checkout digest to 1d96c77 #82

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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # 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
...