-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathConfig.json
More file actions
69 lines (68 loc) · 1.82 KB
/
Config.json
File metadata and controls
69 lines (68 loc) · 1.82 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
{
"categories": [
{
"title": "## 🚀 插件/功能",
"labels": ["Feat", "Add", "feature", "feat", "add", "添加"]
},
{
"title": "## 🐛 修复",
"labels": ["fix","Fix", "修复"]
},
{
"title": "## 📝 文档",
"labels": ["README","文档"]
},
{
"title": "## 🧪 更新",
"labels": ["update","Update","更新"]
},
{
"title": "## 🧰 工作流",
"labels": ["工作流","Workflow","Action"]
}
],
"custom_placeholders": [
{
"name": "TITLE_ONLY",
"source": "TITLE",
"transformer": {
"method": "regexr",
"pattern": "(\\w+(\\(.+\\))?: ?)?(.+)",
"target": "$2 $3"
}
}
],
"label_extractor": [
{
"pattern": "^(feature|feat|add|添加|Feat|Add).*",
"target": "$1",
"on_property": "title"
},
{
"pattern": "^(fix|修复|Fix).*",
"target": "$1",
"on_property": "title"
},
{
"pattern": "^(README|文档).*",
"target": "$1",
"on_property": "title"
},
{
"pattern": "^(update|更新|Update).*",
"target": "$1",
"on_property": "title"
},
{
"pattern": "^(工作流|Workflow|Action).*",
"target": "$1",
"on_property": "title"
}
],
"sort": "ASC",
"template": "${{CHANGELOG}}",
"pr_template": "- ${{TITLE}} - PR: #${{NUMBER}} by@#{{AUTHOR}}",
"empty_template": "#{{OWNER}}\n#{{REPO}}\n#{{FROM_TAG}}\n#{{TO_TAG}}",
"max_pull_requests": 1000,
"max_back_track_time_days": 1000
}