-
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy path.autorc.json
101 lines (101 loc) · 2.54 KB
/
.autorc.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
96
97
98
99
100
101
{
"plugins": [
"sbt",
"released"
],
"versionBranches": "version-",
"shipit": {
"noChangelog": true
},
"canary": {
"force": true
},
"noDefaultLabels": true,
"labels": [
{
"name": "breaking",
"changelogTitle": "💥 Breaking change",
"description": "Major change, breaking API",
"releaseType": "major",
"color": "#FF0000"
},
{
"name": "feat",
"changelogTitle": "🚀 Features",
"description": "A new feature",
"releaseType": "minor",
"color": "#00FF00"
},
{
"name": "fix",
"changelogTitle": "🐛 Bug Fixes",
"description": "A bug fix",
"releaseType": "patch",
"color": "#FFA500"
},
{
"name": "docs",
"changelogTitle": "📝 Documentation",
"description": "Documentation only changes",
"releaseType": "none",
"color": "#ADD8E6"
},
{
"name": "style",
"changelogTitle": "🎨 Styles",
"description": "Changes that do not affect the meaning of the code",
"releaseType": "none",
"color": "#FFC0CB"
},
{
"name": "refactor",
"changelogTitle": "🛠 Code Refactoring",
"description": "A code change that neither fixes a bug nor adds a feature",
"releaseType": "none",
"color": "#808080"
},
{
"name": "perf",
"changelogTitle": "🏎 Performance Improvements",
"description": "A code change that improves performance",
"releaseType": "patch",
"color": "#FFFF00"
},
{
"name": "test",
"changelogTitle": "🧪 Tests",
"description": "Adding missing tests or correcting existing tests",
"releaseType": "none",
"color": "#0000FF"
},
{
"name": "build",
"changelogTitle": "🚧 Builds",
"description": "Changes that affect the build system or external dependencies",
"releaseType": "none",
"color": "#800080"
},
{
"name": "ci",
"changelogTitle": "🔁 Continuous Integrations",
"description": "Changes to our CI configuration files and scripts",
"releaseType": "none",
"color": "#CBC3E3"
},
{
"name": "chore",
"changelogTitle": "🏠 Chores",
"description": "Other changes that don't modify src or test files",
"releaseType": "none",
"color": "#964B00",
"default": true
},
{
"name": "revert",
"changelogTitle": "⏪ Reverts",
"description": "Reverts a previous commit",
"releaseType": "none",
"color": "#FFAE42"
}
]
}