-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog-configuration.json
95 lines (95 loc) · 3.14 KB
/
changelog-configuration.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
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
{
"categories": [
{
"title": "\n\n<br>\n\n#### 🪛 Continuous integration",
"labels": [ "kind/ci", "ci" ]
},
{
"title": "\n\n<br>\n\n#### 🚀 Features",
"labels": [ "kind/feature", "feature", "feat" ]
},
{
"title": "\n\n<br>\n\n#### 🐛 Bugfixes",
"labels": [ "kind/bug", "fix", "bug" ]
},
{
"title": "\n\n<br>\n\n#### 🔧 Changes",
"labels": [ "kind/chore", "change", "chore" ]
},
{
"title": "\n\n<br>\n\nn#### ✨ Optimizations",
"labels": [ "kind/perf", "optimization", "perf", "optimize" ]
},
{
"title": "\n\n<br>\n\n#### 🚨 Security ",
"labels": [ "kind/security", "security" ]
},
{
"title": "\n\n<br>\n\n#### 🧹 Housekeeping",
"labels": [ "kind/refactor", "refactor", "style" ]
},
{
"title": "\n\n<br>\n\n#### 🐒 Miscellaneous",
"labels": [ "kind/misc", "misc" ]
},
{
"title": "\n\n<br>\n\n#### ⛔ Deprecated",
"labels": [ "kind/deprecate", "deprecate" ]
},
{
"title": "\n\n<br>\n\n#### ⛔ Removed",
"labels": [ "kind/remove", "remove" ]
},
{
"title": "\n\n<br>\n\n#### 📦 Build & Dependencies",
"labels": [ "kind/build", "build", "dependency", "dep", "package" ]
},
{
"title": "\n\n<br>\n\n#### ✏️ Docs",
"labels": [ "kind/docs", "doc", "docs", "wiki" ]
},
{
"title": "\n\n<br>\n\n#### 🧪 Tests & Demo Vault",
"labels": [ "kind/test", "test", "tests", "vault" ]
}
],
"sort": "ASC",
"pr_template": "- ${{TITLE_ONLY}} : #{{MERGE_SHA}} @#{{AUTHOR}}",
"empty_template": "- No major changes to address in this release",
"custom_placeholders": [
{
"name": "TITLE_ONLY",
"source": "TITLE",
"transformer": {
"method": "regexr",
"pattern": "(\\w+(\\(.+\\))?: ?)?(.+)",
"target": "$2 $3"
}
}
],
"label_extractor": [
{
"pattern": "^(build|ci|change|chore|doc|docs|wiki|remove|deprecate|security|dependency|dep|package|feat|feature|fix|bug|perf|optimize|optimization|refactor|style|test|tests|vault):(.*)",
"target": "$1",
"on_property": "title"
},
{
"pattern": "^(build|ci|change|chore|doc|docs|wiki|remove|deprecate|security|dependency|dep|package|feat|feature|fix|bug|perf|optimize|optimization|refactor|style|test|tests|vault){1}(\\([\\w\\-\\.]+\\))?(!)?:(.*)",
"target": "$1",
"on_property": "title"
}
],
"duplicate_filter": {
"pattern": "github.*",
"on_property": "author",
"method": "match"
},
"max_tags_to_fetch": 200,
"max_pull_requests": 200,
"max_back_track_time_days": 365,
"exclude_merge_branches": [],
"tag_resolver": {
"method": "semver"
},
"base_branches": []
}