-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathchangelog_config.json
47 lines (47 loc) · 1.28 KB
/
changelog_config.json
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
{
"categories": [
{
"title": "## ⚠ Breaking changes",
"labels": ["API breaking", "ABI breaking"]
},
{
"title": "## 🚀 Features",
"labels": ["enhancement"],
"exclude_labels": ["internal"],
"empty_content": "No new features today 😢"
},
{
"title": "## 🐛 Fixes",
"labels": ["fix"],
"exclude_labels": ["documentation"],
"empty_content": "🤔 No bugs at all?"
},
{
"title": "## 🧰 CI/CD",
"labels": ["ci/cd"]
},
{
"title": "## Documentation",
"labels": ["documentation"]
},
{
"title": "## Dependencies",
"labels": ["dependencies"]
}
],
"ignore_labels": [
"ignore"
],
"sort": {
"order": "ASC",
"on_property": "mergedAt"
},
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>\n\n<details>\n<summary>Also merged but not included in notes</summary>\n\n#{{IGNORED}}\n</details>\n\n### Contributors\n\n#{{CONTRIBUTORS}}\n\n#{{RELEASE_DIFF}}",
"pr_template": "- #{{TITLE}} (PR: ##{{NUMBER}})",
"empty_template": "Nothing here today",
"trim_values": true,
"max_tags_to_fetch": 200,
"max_pull_requests": 200,
"max_back_track_time_days": 365,
"base_branches": [ "main" ]
}