-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcliff.toml
More file actions
15 lines (14 loc) · 619 Bytes
/
cliff.toml
File metadata and controls
15 lines (14 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# git-cliff ~ configuration file
# https://git-cliff.org/docs/configuration
[git]
commit_parsers = [
{ message = "^doc", group = "<!-- 3 -->Documentation" },
{ message = "^feat", group = "<!-- 0 -->Features" },
{ message = "^fix", group = "<!-- 1 -->Bug Fixes" },
{ message = "^perf", group = "<!-- 2 -->Performance" },
{ message = "^refactor", group = "<!-- 4 -->Refactor" },
{ message = "^style", group = "<!-- 5 -->Styling" },
{ message = "^test", group = "<!-- 6 -->Testing" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false