-
Notifications
You must be signed in to change notification settings - Fork 3
/
.autorc
57 lines (57 loc) · 1.64 KB
/
.autorc
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
{
"baseBranch": "develop",
"labels": [
{
"name": "major",
"changelogTitle": "💥 Breaking Change",
"description": "Increment the major version when merged",
"releaseType": "major"
},
{
"name": "enhancement",
"changelogTitle": "🚀 Enhancement",
"description": "Increment the minor version when merged",
"releaseType": "minor"
},
{
"name": "bugs",
"changelogTitle": "🐛 Fixes",
"description": "For bug fixes. Increments the patch version when merged",
"releaseType": "patch"
},
{
"name": "tests",
"changelogTitle": "Tests",
"description": "Changes only affect tests. Increments the patch version when merged",
"releaseType": "patch"
},
{
"name": "tweaks",
"changelogTitle": "🔧 Tweaks",
"description": "For stuff that should increment the patch, but aren't bug fixes or tests i.e. copy changes, minor styling updates. Increments the patch version when merged",
"releaseType": "patch"
},
{
"name": "skip-release",
"description": "Preserve the current version when merged",
"releaseType": "skip"
},
{
"name": "release",
"description": "Create a release when this pr is merged",
"releaseType": "release"
},
{
"name": "internal",
"changelogTitle": "🏠 Internal",
"description": "Changes only affect the internal API",
"releaseType": "none"
},
{
"name": "documentation",
"changelogTitle": "📝 Documentation",
"description": "Changes only affect the documentation",
"releaseType": "none"
}
]
}