-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.autorc
More file actions
39 lines (39 loc) · 963 Bytes
/
.autorc
File metadata and controls
39 lines (39 loc) · 963 Bytes
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
{
"plugins": [
"git-tag"
],
"owner": "seraftech",
"repo": "python-311-opensuse",
"name": "Seraf's Butler",
"email": "no-reply@mail.seraf.dev",
"noDefaultLabels": true,
"labels": [
{
"name": "major",
"changelogTitle": "💥 Breaking Change",
"description": "Increment the major version when merged",
"releaseType": "major",
"color": "#C5000B"
},
{
"name": "minor",
"changelogTitle": "🚀 Enhancement",
"description": "Increment the minor version when merged",
"releaseType": "minor",
"color": "#F1A60E"
},
{
"name": "patch",
"changelogTitle": "🐛 Bug Fix",
"description": "Increment the patch version when merged",
"releaseType": "patch",
"color": "#870048"
},
{
"name": "skip-release",
"description": "Preserve the current version when merged",
"releaseType": "skip",
"color": "#bf5416"
}
]
}