-
Notifications
You must be signed in to change notification settings - Fork 0
/
.autorc
91 lines (91 loc) · 2.29 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
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
{
"plugins": [
"git-tag",
"released",
[
"upload-assets",
[
"./artifacts/**/*.zip",
"./artifacts/**/*.tar.gz"
]
]
],
"onlyPublishWithReleaseLabel": false,
"noDefaultLabels": true,
"labels": [
{
"name": "major",
"changelogTitle": "💥 Breaking Changes",
"description": "Increment the major version when merged",
"releaseType": "major",
"color": "#C5000B"
},
{
"name": "minor",
"changelogTitle": "🚀 New Features and Improvements",
"description": "Increment the minor version when merged",
"releaseType": "minor",
"color": "#F1A60E"
},
{
"name": "patch",
"changelogTitle": "🐛 Bug Fixes",
"description": "Increment the patch version when merged",
"releaseType": "patch",
"color": "#870048"
},
{
"name": "release",
"changelogTitle": "",
"description": "Release the next version when merged",
"releaseType": "release"
},
{
"name": "dependencies",
"changelogTitle": "🔩 Dependency Updates",
"description": "Update one or more dependencies version",
"releaseType": "patch",
"color": "#8732bc"
},
{
"name": "skip-release",
"description": "Preserve the current version when merged",
"releaseType": "skip",
"color": "#bf5416"
},
{
"name": "internal",
"changelogTitle": "🏠 Internal",
"description": "Changes only affect the internal API",
"releaseType": "none",
"color": "#696969"
},
{
"name": "documentation",
"changelogTitle": "📝 Documentation",
"description": "Changes only affect the documentation",
"releaseType": "none",
"color": "#cfd3d7"
},
{
"name": "tests",
"changelogTitle": "🧪 Tests",
"description": "Add or improve existing tests",
"releaseType": "none",
"color": "#ffd3cc"
},
{
"name": "automation",
"changelogTitle": "🤖 Automation",
"description": "Changes to automation such as CI",
"releaseType": "none"
},
{
"name": "chore",
"changelogTitle": "",
"description": "Chore that should not be included in release notes",
"releaseType": "none",
"default": true
}
]
}