Skip to content

Commit a1a92c6

Browse files
committed
Add changelog groups
1 parent 39d645c commit a1a92c6

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

.github/changelog.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
{
22
"resolve": "commits",
33
"sort": "asc",
4-
"template": ".github/changelog.tmpl"
4+
"template": ".github/changelog.tmpl",
5+
"groupings": [
6+
{
7+
"name": "Fixes",
8+
"patterns": [
9+
"(?i)\\bbug\\b",
10+
"(?i)\\bfix\\b"
11+
]
12+
},
13+
{
14+
"name": "Features",
15+
"patterns": [
16+
"^(?i)feat:\\b",
17+
"^(?i)add:\\b"
18+
]
19+
},
20+
{
21+
"name": "Cleanup",
22+
"patterns": [
23+
"(?i)\\brefactor:\\b"
24+
]
25+
},
26+
{
27+
"name": "Other",
28+
"patterns": [
29+
".?"
30+
]
31+
}
32+
]
533
}

0 commit comments

Comments
 (0)