Skip to content

chore(config): ignore chore commits from the CHANGELOG #2

chore(config): ignore chore commits from the CHANGELOG

chore(config): ignore chore commits from the CHANGELOG #2

Workflow file for this run

on: [ push ]
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: CHANGELOG.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"