-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.cliff.toml
More file actions
28 lines (26 loc) · 902 Bytes
/
Copy path.cliff.toml
File metadata and controls
28 lines (26 loc) · 902 Bytes
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
[changelog]
header = "# 🎉 Whats new\n"
body = """
{% for group, commits in commits | sort(attribute="group") | group_by(attribute="group") %}
## {{ group }}
{% for commit in commits %}
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/Amtrend/ssh-manager/commit/{{ commit.id }}))\
{% endfor %}
{% endfor %}
{% if version %}
{% if previous.version %}
**Full Changelog**: https://github.com/Amtrend/ssh-manager/compare/{{ previous.version }}...{{ version }}
{% endif %}
{% endif %}
"""
footer = ""
[git]
conventional_commits = true
filter_unconventional = true
commit_parsers = [
{ message = "^feat", group = "🚀 Features" },
{ message = "^fix", group = "🐛 Bug Fixes" },
{ message = "^docs", group = "📝 Documentation" },
{ message = "^chore", group = "🔧 Chores" },
{ message = ".*", group = "📦 Other Changes" }
]