-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease_config.json
More file actions
82 lines (82 loc) · 1.83 KB
/
release_config.json
File metadata and controls
82 lines (82 loc) · 1.83 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
{
"categories": [
{
"title": "## ✨ Next Generation Features & Changes",
"labels": [
"epoch-change"
]
},
{
"title": "## 🚧 Breaking Changes",
"labels": [
"breaking-change"
]
},
{
"title": "## 🚀 Features",
"labels": [
"enhancement",
"feat"
]
},
{
"title": "## 🐛 Fixes",
"labels": [
"fix",
"bug"
]
},
{
"title": "## 🧪 Tests",
"labels": [
"test"
]
},
{
"title": "## ⚙️ CI/CD",
"labels": [
"ci", "cd"
]
},
{
"title": "## 📦 Misc",
"labels": []
}
],
"ignore_labels": [
"skip-changelog"
],
"label_extractor": [
{
"pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test){1}(\\([\\w\\-\\.]+\\))?(!)?: ([\\w ])+([\\s\\S]*)",
"target": "$1"
},
{
"pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test){1}(\\([\\w\\-\\.]+\\)){1}(!)?: ([\\w ])+([\\s\\S]*)",
"target": "scope-$2"
},
{
"pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test){1}(\\([\\w\\-\\.]+\\))?!: ([\\w ])+([\\s\\S]*)",
"target": "breaking-change"
},
{
"pattern": "^BREAKING CHANGE:(.*)",
"target": "breaking-change"
},
{
"pattern": "^ignore(\\([\\w\\-\\.]+\\))?: ([\\w ])+([\\s\\S]*)",
"target": "skip-changelog"
}
],
"tag_resolver": {
"method": "sort"
},
"sort": {
"order": "ASC",
"on_property": "mergedAt"
},
"template": "#{{CHANGELOG}}\n\n",
"pr_template": "- #{{TITLE}} (##{{NUMBER}}) - #{{AUTHOR}}",
"commit_template": "- #{{TITLE}} ([`details`](https://github.com/WolfyScript/dev-tools/commit/#{{MERGE_SHA}}))",
"empty_template": "- no changes"
}