Skip to content

Commit

Permalink
Create changelog.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrig authored Mar 12, 2024
1 parent ce01f00 commit d55f7be
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Automate Changelog
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Git Cliff
uses: tj-actions/[email protected]
id: git-cliff
with:
args: "--verbose"
output: "CHANGELOG.md"
template-config: "https://github.com/noclocks/.github/blob/a15c85a360a37453e2d5bc49c3109a5f4faf03d5/workflow-templates/cliff.template.toml"
- name: Print Changelog
id: print-changelog
run: |
cat "${{ steps.git-cliff.outputs.changelog }}"
- name: Commit and Push
id: commit-push
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
set +e
git add CHANGELOG.md
git commit -m "[chore]: update changelog"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git "main"

0 comments on commit d55f7be

Please sign in to comment.