Skip to content

Commit

Permalink
docs(config): update the comment for tag_pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Oct 29, 2023
1 parent 3c2fb60 commit 596fd4d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "beta|alpha"
Expand Down
2 changes: 1 addition & 1 deletion config/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/cocogitto.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/detailed.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/keepachangelog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = true
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/scoped.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/scopesorted.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/unconventional.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ commit_parsers = [
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
# regex for matching git tags
tag_pattern = "^v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
Expand Down

0 comments on commit 596fd4d

Please sign in to comment.