-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy path.cliff.toml
More file actions
43 lines (42 loc) · 1.35 KB
/
.cliff.toml
File metadata and controls
43 lines (42 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[changelog]
header = ""
body = """
{% if version %}## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}## [Unreleased]{% endif %}
{% for group, commits in commits | group_by(attribute="group") %}
{% if commits | length != 0 -%}
### {{ group }}
{% for commit in commits %}
- {{ commit.message | upper_first }} ({{ commit.id | truncate(length=7, end="") }})
{% endfor %}
{% endif %}
{% endfor %}
"""
footer = ""
trim = true
[git]
conventional_commits = false
filter_unconventional = false
split_commits = false
protect_breaking_commits = true
filter_commits = false
tag_pattern = "v?\\d+\\.\\d+\\.\\d+.*"
topo_order = false
sort_commits = "newest"
commit_parsers = [
{ message = "^feat", group = "Added" },
{ message = "^fix", group = "Fixed" },
{ message = "^docs?", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Changed" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^build", group = "Build" },
{ message = "^ci", group = "CI" },
{ message = "^chore\\(release\\)", skip = true },
{ message = "^chore", group = "Chores" },
{ message = "^revert", group = "Reverted" },
{ message = "^Merge", skip = true },
{ body = ".*security", group = "Security" },
{ message = ".*", group = "Other" },
]