forked from EdgeTX/edgetx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliff.toml
More file actions
232 lines (221 loc) · 10.9 KB
/
cliff.toml
File metadata and controls
232 lines (221 loc) · 10.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Configuration for git-cliff changelog generation
# https://git-cliff.org/docs/configuration
[changelog]
header = ""
body = """
{% for group, commits in commits | group_by(attribute="group") -%}
{% if group == "🚀 Features" -%}
### {{ group }}
{% set commits_by_scope = commits | group_by(attribute="scope") -%}
{% if commits_by_scope.firmware is defined or commits_by_scope.fw is defined -%}
#### 🎮 Firmware
{% if commits_by_scope.firmware is defined -%}{% for commit in commits_by_scope.firmware -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.fw is defined -%}{% for commit in commits_by_scope.fw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.bw is defined -%}
#### 🖥️ Black & White Radio
{% for commit in commits_by_scope.bw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}
{% endif -%}
{% if commits_by_scope.color is defined or commits_by_scope.colour is defined -%}
#### 🎨 Color LCD Radio
{% if commits_by_scope.color is defined -%}{% for commit in commits_by_scope.color -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.colour is defined -%}{% for commit in commits_by_scope.colour -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.cpn is defined or commits_by_scope.companion is defined -%}
#### 💻 Companion
{% if commits_by_scope.cpn is defined -%}{% for commit in commits_by_scope.cpn -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.companion is defined -%}{% for commit in commits_by_scope.companion -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% set_global has_other = false -%}
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}{% set_global has_other = true -%}{% endif -%}{% endfor -%}
{% if has_other -%}
#### 📦 Other
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endif -%}{% endfor -%}
{% endif -%}
{% endif -%}
{% endfor -%}
{% for group, commits in commits | group_by(attribute="group") -%}
{% if group == "🐛 Bug Fixes" -%}
### {{ group }}
{% set commits_by_scope = commits | group_by(attribute="scope") -%}
{% if commits_by_scope.firmware is defined or commits_by_scope.fw is defined -%}
#### 🎮 Firmware
{% if commits_by_scope.firmware is defined -%}{% for commit in commits_by_scope.firmware -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.fw is defined -%}{% for commit in commits_by_scope.fw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.bw is defined -%}
#### 🖥️ Black & White Radio
{% for commit in commits_by_scope.bw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}
{% endif -%}
{% if commits_by_scope.color is defined or commits_by_scope.colour is defined -%}
#### 🎨 Color LCD Radio
{% if commits_by_scope.color is defined -%}{% for commit in commits_by_scope.color -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.colour is defined -%}{% for commit in commits_by_scope.colour -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.cpn is defined or commits_by_scope.companion is defined -%}
#### 💻 Companion
{% if commits_by_scope.cpn is defined -%}{% for commit in commits_by_scope.cpn -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.companion is defined -%}{% for commit in commits_by_scope.companion -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% set_global has_other = false -%}
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}{% set_global has_other = true -%}{% endif -%}{% endfor -%}
{% if has_other -%}
#### 📦 Other
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endif -%}{% endfor -%}
{% endif -%}
{% endif -%}
{% endfor -%}
{% for group, commits in commits | group_by(attribute="group") -%}
{% if group != "🚀 Features" and group != "🐛 Bug Fixes" and group != "📦 Other" -%}
### {{ group }}
{% set commits_by_scope = commits | group_by(attribute="scope") -%}
{% if commits_by_scope.firmware is defined or commits_by_scope.fw is defined -%}
#### 🎮 Firmware
{% if commits_by_scope.firmware is defined -%}{% for commit in commits_by_scope.firmware -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.fw is defined -%}{% for commit in commits_by_scope.fw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.bw is defined -%}
#### 🖥️ Black & White Radio
{% for commit in commits_by_scope.bw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}
{% endif -%}
{% if commits_by_scope.color is defined or commits_by_scope.colour is defined -%}
#### 🎨 Color LCD Radio
{% if commits_by_scope.color is defined -%}{% for commit in commits_by_scope.color -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.colour is defined -%}{% for commit in commits_by_scope.colour -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.cpn is defined or commits_by_scope.companion is defined -%}
#### 💻 Companion
{% if commits_by_scope.cpn is defined -%}{% for commit in commits_by_scope.cpn -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.companion is defined -%}{% for commit in commits_by_scope.companion -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% set_global has_other = false -%}
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}{% set_global has_other = true -%}{% endif -%}{% endfor -%}
{% if has_other -%}
#### 📦 Other
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endif -%}{% endfor -%}
{% endif -%}
{% endif -%}
{% endfor -%}
{% for group, commits in commits | group_by(attribute="group") -%}
{% if group == "📦 Other" -%}
### {{ group }}
{% set commits_by_scope = commits | group_by(attribute="scope") -%}
{% if commits_by_scope.firmware is defined or commits_by_scope.fw is defined -%}
#### 🎮 Firmware
{% if commits_by_scope.firmware is defined -%}{% for commit in commits_by_scope.firmware -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.fw is defined -%}{% for commit in commits_by_scope.fw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.bw is defined -%}
#### 🖥️ Black & White Radio
{% for commit in commits_by_scope.bw -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}
{% endif -%}
{% if commits_by_scope.color is defined or commits_by_scope.colour is defined -%}
#### 🎨 Color LCD Radio
{% if commits_by_scope.color is defined -%}{% for commit in commits_by_scope.color -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.colour is defined -%}{% for commit in commits_by_scope.colour -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% if commits_by_scope.cpn is defined or commits_by_scope.companion is defined -%}
#### 💻 Companion
{% if commits_by_scope.cpn is defined -%}{% for commit in commits_by_scope.cpn -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% if commits_by_scope.companion is defined -%}{% for commit in commits_by_scope.companion -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endfor -%}{% endif -%}
{% endif -%}
{% set_global has_other = false -%}
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}{% set_global has_other = true -%}{% endif -%}{% endfor -%}
{% if has_other -%}
#### 📦 Other
{% for commit in commits -%}{% if commit.scope != "firmware" and commit.scope != "fw" and commit.scope != "bw" and commit.scope != "color" and commit.scope != "colour" and commit.scope != "cpn" and commit.scope != "companion" -%}
- {{ commit.message | split(pat="\\n") | first | trim }}
{% endif -%}{% endfor -%}
{% endif -%}
{% endif -%}
{% endfor -%}
"""
trim = true
[git]
conventional_commits = true
filter_unconventional = false
# Only look for nightly, release and rc tags
tag_pattern = "^(nightly|v[0-9]+\\.[0-9]+\\.[0-9]+(-rc[0-9]+)?)$"
# Ensures it looks at the branch structure
topo_order = true
# Repect the nearest tag on current branch
use_branch_tags = true
# Ensure it sorts from the tag forward
sort_commits = "oldest"
# Commit parsers - order matters! More specific patterns first
commit_parsers = [
# Type-based categorization (top-level headings)
{ message = "^feat", group = "🚀 Features" },
{ message = "^fix", group = "🐛 Bug Fixes" },
{ message = "^docs?", group = "📝 Documentation" },
{ message = "^perf", group = "⚡ Performance" },
{ message = "^refactor", group = "🔨 Refactoring" },
{ message = "^style", group = "🎨 Style" },
{ message = "^test", group = "🧪 Tests" },
{ message = "^chore", group = "🧹 Chores" },
{ message = "^ci", group = "🔧 CI/CD" },
# Everything else
{ body = ".*", group = "📦 Other" },
]