Skip to content

Commit 7aef3e8

Browse files
committed
fix: correct git-cliff config path to prevent fallback to default
1 parent 8d2afaa commit 7aef3e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/reusable-prepare-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
GITHUB_REPO: ${{ github.repository }}
5959
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
6060
run: |
61-
npx git-cliff --config .change-log-config/cliff.toml --verbose --latest --strip all > pr_body_raw.md
61+
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --strip all > pr_body_raw.md
6262
6363
- name: Save PR Body to File
6464
run: |
@@ -71,10 +71,10 @@ jobs:
7171
run: |
7272
if [ -f "CHANGELOG.md" ]; then
7373
# File exists: Prepend new changes (git-cliff intelligently handles headers).
74-
npx git-cliff --config .change-log-config/cliff.toml --verbose --latest --prepend CHANGELOG.md
74+
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --latest --prepend CHANGELOG.md
7575
else
7676
# File missing: Create new with full history and header.
77-
npx git-cliff --config .change-log-config/cliff.toml --verbose --output CHANGELOG.md
77+
npx git-cliff --config .change-log-config/src/cliff.toml --verbose --output CHANGELOG.md
7878
fi
7979
8080
- name: Commit and Push

0 commit comments

Comments
 (0)