Skip to content

Commit

Permalink
feat: Add action to generate changelog on releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
fourjuaneight committed May 23, 2022
1 parent 8c88916 commit 213f75f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Changelog

on:
release:
types: [published]

jobs:
worker:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: Generate a changelog
uses: orhun/git-cliff-action@v1
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md

0 comments on commit 213f75f

Please sign in to comment.