Skip to content

chore: improve changelog by using git-cliff #1

chore: improve changelog by using git-cliff

chore: improve changelog by using git-cliff #1

Workflow file for this run

name: Generate changelog
on:
push:
branches: [ master, staging ]
pull_request:
workflow_dispatch:
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate a changelog
uses: orhun/git-cliff-action@v4
id: git-cliff
with:
config: cliff.toml
args: --verbose --exclude-path "data/" --bump
env:
OUTPUT: CHANGELOG-cliff.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"