Skip to content

Commit 658714a

Browse files
committed
chore: fix git cliff tag pattern
1 parent 284a4ba commit 658714a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

justfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,17 @@ backend:
9898
zellij action new-tab --layout .dev/backend_layout.kdl
9999

100100
# Generate CHANGELOG
101-
changelog: changelog-term
101+
changelog: changelog-term changelog-auth
102102

103103
# Generate synd_term CHANGELOG
104104
# todo use GIT_CLIFF__CHANGELOG__TAG_PATTERN=""
105105
changelog-term:
106+
GIT_CLIFF__GIT__TAG_PATTERN="synd-term-v.*" \
106107
git cliff --include-path "{{term_dir}}/**" out> {{term_dir}}/CHANGELOG.md
107108

108109
changelog-auth:
109-
git cliff --include-path "{{auth_dir}}/**" --include-path "crates/synd_authn/*" out> {{auth_dir}}/CHANGELOG.md
110+
GIT_CLIFF__GIT__TAG_PATTERN="synd-auth-v.*" \
111+
git cliff --include-path "{{auth_dir}}/**" --include-path "crates/synd_authn/**" out> {{auth_dir}}/CHANGELOG.md
110112

111113
# Release synd_auth
112114
release-auth *flags:

0 commit comments

Comments
 (0)