Skip to content

chore(deps): bump orhun/git-cliff-action from 2 to 3 #15

chore(deps): bump orhun/git-cliff-action from 2 to 3

chore(deps): bump orhun/git-cliff-action from 2 to 3 #15

name: Generate ChangeLog
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
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@v3
id: git-cliff
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CLIFF_NOTES.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"