-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliff.toml
More file actions
59 lines (58 loc) · 2.19 KB
/
Copy pathcliff.toml
File metadata and controls
59 lines (58 loc) · 2.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[changelog]
header = ""
body = """
{% if version %}\
## {{ version }} - {{ timestamp | date(format="%Y-%m-%d") }}
{% if commits | filter(attribute="group", value="Features") | length > 0 %}
### Features
{% for commit in commits | filter(attribute="group", value="Features") %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/runware/runware-cli/commit/{{ commit.id }}))
{%- endfor %}
{% endif %}\
{% if commits | filter(attribute="group", value="Bug Fixes") | length > 0 %}
### Bug Fixes
{% for commit in commits | filter(attribute="group", value="Bug Fixes") %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/runware/runware-cli/commit/{{ commit.id }}))
{%- endfor %}
{% endif %}\
{% if commits | filter(attribute="group", value="Performance") | length > 0 %}
### Performance
{% for commit in commits | filter(attribute="group", value="Performance") %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/runware/runware-cli/commit/{{ commit.id }}))
{%- endfor %}
{% endif %}\
{% if commits | filter(attribute="group", value="Other") | length > 0 %}
### Other
{% for commit in commits | filter(attribute="group", value="Other") %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/runware/runware-cli/commit/{{ commit.id }}))
{%- endfor %}
{% endif %}\
{% endif %}
"""
trim = false
footer = ""
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = []
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^perf", group = "Performance" },
{ message = "^docs", skip = true },
{ message = "^test", skip = true },
{ message = "^ci", skip = true },
{ message = "^chore", skip = true },
{ message = "^build", skip = true },
{ message = "^refactor", skip = true },
{ message = "^.*", group = "Other" },
]
protect_breaking_commits = false
filter_commits = true
tag_pattern = "v[0-9].*"
skip_tags = ""
ignore_tags = ""
topo_order = false
sort_commits = "oldest"
ignore_commit_message = []