-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfiguration.json
executable file
·54 lines (54 loc) · 1.14 KB
/
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
{
"categories": [
{
"title": "## 🚀 Features",
"labels": ["feat","feats","sparkles"]
},
{
"title": "## \uD83C\uDF1F Optimizes",
"labels": ["art","zap","lipstick"]
},
{
"title": "## 🐛 Fixes",
"labels": ["bug","fix","ambulance"]
},
{
"title": "## 🧪 Tests",
"labels": ["🧪","test","tests"]
},
{
"title": "## 💬 Other",
"labels": ["fire", "rocket","other","tada","construction_worker","green_heart"]
},
{
"title": "## \uD83D\uDCD6 Docs",
"labels": ["doc","docs","memo"]
},
{
"title": "## 📦 Dependencies",
"labels": ["dependencies","deps","arrow_down","arrow_up"]
}
],
"template": "${{CHANGELOG}}",
"pr_template": "- **${{TITLE}}**",
"label_extractor": [
{
"pattern": ":(.+): (.+)",
"target": "$1",
"on_property": "title"
}
],
"transformers": [
{
"pattern": ":(.+): (.+)",
"target": "$2"
}
],
"duplicate_filter": {
"pattern": ".+",
"on_property": "title",
"method": "match"
},
"max_pull_requests": 1000,
"max_back_track_time_days": 1000
}