Skip to content

Commit e14055f

Browse files
committed
config: add cliff.toml git-cliff configuration file for Changelog (#1)
1 parent 489b1f7 commit e14055f

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

cliff.toml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# configuration file for git-cliff (0.1.0)
2+
3+
[changelog]
4+
# changelog header
5+
header = """
6+
# Changelog
7+
All notable changes to this project will be documented in this file.\n
8+
"""
9+
# template for the changelog body
10+
# https://tera.netlify.app/docs/#introduction
11+
body = """
12+
{% if version %}\
13+
## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
14+
{% else %}\
15+
## [unreleased]
16+
{% endif %}\
17+
{% for group, commits in commits | group_by(attribute="group") %}
18+
### {{ group | upper_first }}
19+
{% for commit in commits %}
20+
- {{ commit.message | upper_first }}\
21+
{% endfor %}
22+
{% endfor %}\n
23+
"""
24+
# remove the leading and trailing whitespaces from the template
25+
trim = true
26+
# changelog footer
27+
footer = """
28+
Generated by Git-Cliff
29+
"""
30+
31+
[git]
32+
# allow only conventional commits
33+
# https://www.conventionalcommits.org
34+
conventional_commits = true
35+
# regex for parsing and grouping commits
36+
commit_parsers = [
37+
{ message = "^feat*", group = "Features"},
38+
{ message = "^fix*", group = "Bug Fixes"},
39+
{ message = "^bug*", group = "Bug Fixes"},
40+
{ message = "^doc*", group = "Documentation"},
41+
{ message = "^perf*", group = "Performance"},
42+
{ message = "^refactor*", group = "Refactor"},
43+
{ message = "^config*", group = "Configuration"},
44+
{ message = "^style*", group = "Styling"},
45+
{ message = "^test*", group = "Testing"},
46+
{ message = "^chore\\(release\\): prepare for*", skip = true},
47+
{ message = "^chore*", group = "Miscellaneous Tasks"},
48+
{ body = ".*security", group = "Security"}
49+
]
50+
# filter out the commits that are not matched by commit parsers
51+
filter_commits = false
52+
# glob pattern for matching git tags
53+
tag_pattern = "v[0-9]*"
54+
# regex for skipping tags
55+
skip_tags = "v0.1.0-beta.1"

0 commit comments

Comments
 (0)