-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy path.autorc
More file actions
99 lines (99 loc) · 2.59 KB
/
.autorc
File metadata and controls
99 lines (99 loc) · 2.59 KB
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
{
"plugins": [
"git-tag",
"all-contributors",
"conventional-commits",
"released"
],
"owner": "redis",
"repo": "redis-vl-python",
"onlyPublishWithReleaseLabel": true,
"labels": [
{
"name": "auto:major",
"changelogTitle": "💥 Breaking Change",
"description": "Increment the major version when merged",
"releaseType": "major",
"color": "#C5000B",
"overwrite": true
},
{
"name": "auto:minor",
"changelogTitle": "🚀 Enhancement",
"description": "Increment the minor version when merged",
"releaseType": "minor",
"color": "#F1A60E",
"overwrite": true
},
{
"name": "auto:patch",
"changelogTitle": "🐛 Bug Fix",
"description": "Increment the patch version when merged",
"releaseType": "patch",
"color": "#870048",
"overwrite": true
},
{
"name": "auto:skip-release",
"description": "Preserve the current version when merged",
"releaseType": "skip",
"color": "#bf5416",
"overwrite": true
},
{
"name": "auto:release",
"description": "Create a release when this PR is merged",
"releaseType": "release",
"color": "#007f70",
"overwrite": true
},
{
"name": "auto:internal",
"changelogTitle": "🏠 Internal",
"description": "Changes only affect the internal API",
"releaseType": "none",
"color": "#696969",
"overwrite": true
},
{
"name": "auto:documentation",
"changelogTitle": "📝 Documentation",
"description": "Changes only affect the documentation",
"releaseType": "none",
"color": "#cfd3d7",
"overwrite": true
},
{
"name": "auto:tests",
"changelogTitle": "🧪 Tests",
"description": "Add or improve existing tests",
"releaseType": "none",
"color": "#ffd3cc",
"overwrite": true
},
{
"name": "auto:dependencies",
"changelogTitle": "🔩 Dependency Updates",
"description": "Update one or more dependencies version",
"releaseType": "none",
"color": "#8732bc",
"overwrite": true
},
{
"name": "auto:performance",
"changelogTitle": "🏎 Performance",
"description": "Improve performance of an existing feature",
"releaseType": "patch",
"color": "#f4b2d8",
"overwrite": true
},
{
"name": "auto:ci",
"changelogTitle": "CI/CD Changes",
"description": "Updates to CI/CD workflows and processes",
"releaseType": "none",
"color": "#E5A3DD",
"overwrite": true
}
]
}