Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,18 @@ jobs:
run: |
if [ -f cliff.toml ]; then echo "present=true" >> "$GITHUB_OUTPUT"; else echo "present=false" >> "$GITHUB_OUTPUT"; fi

# Pre-release tags (alpha/beta/rc) are collapsed so the file mirrors the
# release notes: all work that flowed through the pre-releases of a
# version lands under a single stable section instead of being scattered
# across the alpha entries (which leaves the stable entry empty, since the
# graduation commits carry no new changes). The regex is single-quoted
# because git-cliff-action splices these args into a bash command line.
- name: Generate CHANGELOG.md (full history)
if: steps.cliff_detect.outputs.present == 'true' && github.ref_name != 'develop'
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --verbose --tag ${{ steps.bump.outputs.tag }}
args: --verbose --tag ${{ steps.bump.outputs.tag }} --ignore-tags '.*-(alpha|beta|rc).*'
env:
OUTPUT: CHANGELOG.md
GITHUB_REPO: ${{ github.repository }}
Expand Down
Loading