Skip to content

Commit

Permalink
chore(cliff): update cliff.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Dec 23, 2021
1 parent ea530ac commit 0a2aa73
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ footer = """
"""

[git]
# allow only conventional commits
# https://www.conventionalcommits.org
# parse the commits based on https://www.conventionalcommits.org
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "Features"},
Expand All @@ -57,3 +58,11 @@ commit_parsers = [
filter_commits = false
# glob pattern for matching git tags
tag_pattern = "v8.1.[0-9]*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
ignore_tags = ""
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
sort_commits = "oldest"

0 comments on commit 0a2aa73

Please sign in to comment.