after #53,
# Obtained from README.md
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
outputs:
release_body: ${{ steps.git-cliff.outputs.content }}
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: -vv --latest --strip header
env:
OUTPUT: CHANGES.md
GITHUB_REPO: ${{ github.repository }}
the arguments (--latest --strip header) in the above example are no longer parsed.
the output is the same as git cliff -o CHANGES.md
after #53,
the arguments (
--latest --strip header) in the above example are no longer parsed.the output is the same as
git cliff -o CHANGES.md