Skip to content

Commit b736a14

Browse files
committed
actions: use the tag filter everywhere
1 parent ec5926d commit b736a14

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.mise.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
"npm:prettier-plugin-toml" = "2.0.1"
77
just = "1.34.0"
88
helm = "3.15.4"
9+
"cargo:git-cliff" = "2.5.0"

cliff.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protect_breaking_commits = false
6969
# filter out the commits that are not matched by commit parsers
7070
filter_commits = false
7171
# regex for matching git tags
72-
# tag_pattern = "v[0-9].*"
72+
tag_pattern = "v*"
7373
# regex for skipping tags
7474
# skip_tags = ""
7575
# regex for ignoring tags
@@ -80,6 +80,3 @@ topo_order = false
8080
sort_commits = "oldest"
8181
# limit the number of commits included in the changelog.
8282
# limit_commits = 42
83-
84-
[bump]
85-
initial_tag = "v0.1.0"

justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ yellow := '\033[33m'
99

1010
git_version := `git rev-parse --short HEAD 2>/dev/null || echo "unknown"`
1111
is_unstable := `git tag --points-at | grep 'v' && echo "" || echo "-UNSTABLE"`
12-
version := `git cliff --bumped-version --tag-pattern "v.*" 2>/dev/null | cut -c2- || echo "0.0.0"` + is_unstable
12+
version := `git cliff --bumped-version 2>/dev/null | cut -c2- || echo "0.0.0"` + is_unstable
1313
version_placeholder := "0.0.0-UNSTABLE"
1414

1515
# Docker settings

0 commit comments

Comments
 (0)