-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.autorc.json
60 lines (60 loc) · 1.3 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
{
"owner": "pleo-io",
"repo": "prop",
"author": "pleo-bot-auto-versioning <[email protected]>",
"onlyPublishWithReleaseLabel": false,
"noDefaultLabels": true,
"labels": [
{
"name": "major",
"releaseType": "major",
"changelogTitle": "💥 Major changes",
"description": "Increment the major version when merged",
"color": "#C5000B"
},
{
"name": "minor",
"releaseType": "minor",
"changelogTitle": "🎁 Features",
"description": "Increment the minor version when merged",
"color": "#F1A60E"
},
{
"name": "patch",
"releaseType": "patch",
"changelogTitle": "🐞 Fixes",
"description": "Increment the patch version when merged",
"color": "#870048"
},
{
"name": "internal",
"changelogTitle": "🏠 Internal",
"description": "Changes only affect the internal API",
"releaseType": "none",
"color": "#696969",
"default": true
}
],
"plugins": [
[
"git-tag"
],
[
"omit-release-notes",
{
"username": [
"pleo-bot-renovate",
"pleo-bot"
]
}
],
[
"omit-commits",
{
"email": [
]
}
]
]
}