Skip to content

Commit

Permalink
chore: fix git-cliff tag_pattern (#2759)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Mar 6, 2024
1 parent 0644a65 commit 41d9563
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ commit_parsers = [
protect_breaking_commits = true
# filter out the commits that are not matched by commit parsers
filter_commits = false
# *glob pattern* for matching git tags
tag_pattern = "*"
# *regex* for skipping tagged commits entirely
# regex for matching git tags
tag_pattern = ".*"
# regex for skipping tagged commits entirely
# skip_tags = "v0.1.0-beta.1"
# *regex* for ignoring tags, but including the commits into the next one
# regex for ignoring tags, but including the commits into the next one
ignore_tags = "^ethers-.*-.*"
# sort the tags topologically
topo_order = false
Expand Down

0 comments on commit 41d9563

Please sign in to comment.