forked from pwnwriter/hysp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cliff.toml
36 lines (31 loc) · 1.41 KB
/
cliff.toml
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
[changelog]
header = """
<h3 align="center"><strong> All changes of this release are documented here. </strong> </h3>
![-----------------------------------------------------](https://github.com/pwnwriter/haylxon/blob/readme-assets/colored.png)
> *Note*: ***The 🚨emoji indicates significant changes in the commit.***
"""
body = """
{% for group, commits in commits | group_by(attribute="group") %}
## {{ group }}
{% for commit in commits %}
- [`{{ commit.id | truncate(length=7,end="") }}`](https://github.com/pwnwriter/hysp/commit/{{ commit.id }}): {% if commit.breaking %}🚨 {% endif %}{{ commit.message | upper_first }}.
{% endfor %}
{% endfor %}
"""
footer = """
<!-- generated by [`git-cliff`](https://github.com/orhun/git-cliff) -->
<p align="center"><img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg?sanitize=true" /></p>
"""
[git]
filter_commits = true
commit_parsers = [
{ message = "^feat", group = "🦁Features" },
{ message = "^fix", group = "👨🏻🔧**Bug Fixes**" },
{ message = "^docx", group = "Documentation" },
{ message = "^perf", group = "🐶Performance" },
{ message = "^refactor", group = "✨Refactor" },
{ message = "^beautify", group = "🌈 Beautify" },
{ message = "^test", group = "🌝Testing" },
{ message = "^chore", group = "☃️ Miscellaneous Tasks"},
{ message = "^enhan", group = "🍂Enhancements" }
]