-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcliff.toml
More file actions
58 lines (52 loc) · 1.81 KB
/
cliff.toml
File metadata and controls
58 lines (52 loc) · 1.81 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
[changelog]
header = """
# Changelog
This repository tracks published Unraid template and icon updates for the
JSONbored AIO app fleet.
Notable changes are typically driven by:
- new app templates being added
- icon updates
- metadata or template corrections
- sync and maintenance cleanup
For app-specific release history, use the individual AIO repositories.
Automated catalog sync commits are intentionally omitted here so this file stays readable.
This catalog is maintained continuously on `main` and does not require formal GitHub Releases.
"""
body = """
## Unreleased
{% for group, commits in commits | group_by(attribute="group") -%}
### {{ group }}
{% for commit in commits -%}
- {{ commit.message | split(pat="\n") | first | trim | upper_first }}
{% endfor %}
{% if not loop.last %}\n{% endif -%}
{% endfor -%}
"""
trim = true
footer = "<!-- generated by git-cliff -->"
[git]
conventional_commits = true
filter_unconventional = true
require_conventional = false
split_commits = false
protect_breaking_commits = true
sort_commits = "oldest"
commit_preprocessors = [
{ pattern = " \\(#\\d+\\)$", replace = "" },
]
commit_parsers = [
{ message = "^Merge pull request", skip = true },
{ message = "^Merge branch 'main' into ", skip = true },
{ message = "^chore\\(changelog\\):", skip = true },
{ message = "^chore: auto-sync .* from upstream$", skip = true },
{ message = "^feat", group = "Features" },
{ message = "^Fix:", group = "Fixes" },
{ message = "^fix", group = "Fixes" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactors" },
{ message = "^docs?", group = "Documentation" },
{ message = "^ci", group = "CI" },
{ message = "^chore\\(deps", group = "Dependency Updates" },
{ message = "^chore", group = "Maintenance" },
{ message = "^revert", group = "Reverts" },
]