This action generates the changelog using git-cliff.
jobs:
generate-changelog:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run generate-changelog
id: generate-changelog
uses: autowarefoundation/autoware-github-actions/generate-changelog@v1
- name: Show result
run: |
echo "$CHANGELOG"
env:
CHANGELOG: ${{ steps.generate-changelog.outputs.changelog }}
Name |
Required |
Description |
git-cliff-args |
false |
The arguments for the git-cliff command. |
git-cliff-config |
false |
The path to the git-cliff config file. |
trim-version-and-date |
false |
Whether to trim the version and date from the changelog. |
save-json-output |
false |
Save the output contents to artifact in json format. |
Name |
Description |
changelog |
The generated changelog. |