Skip to content

doc(changelog): Update CHANGELOG.md #58

doc(changelog): Update CHANGELOG.md

doc(changelog): Update CHANGELOG.md #58

Workflow file for this run

name: changelog
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
cliffy:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.SQ_CHANGELOG_COMMITTER_APP_ID }}
private-key: ${{ secrets.SQ_CHANGELOG_COMMITTER_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
ref: main # always check out the default branch even when triggered by tag push
fetch-depth: 0 # clone the whole commit history
token: ${{ steps.app-token.outputs.token }}
- uses: cashapp/activate-hermit@v1
- run: make CHANGELOG.md
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "doc(changelog): Update CHANGELOG.md"