-
Notifications
You must be signed in to change notification settings - Fork 46
/
.autorc
69 lines (69 loc) · 1.99 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
{
"repo": "bolt",
"author": {
"name": "Bolt Bot",
"email": "no-reply@boltdesignsystem.com",
},
"plugins": [
["./scripts/auto-plugin.js"],
[
"omit-commits",
{
"subject": ["chore: version bump", "chore: update .incache", "chore(release)", "Merge"],
}
]
],
"owner": "boltdesignsystem",
"labels": [
{
"name": "type: feature",
"description": "List this PR in the 'Features' section of the release notes.",
"changelogTitle": "Features",
},
{
"name": "type: bugfix",
"description": "List this PR in the 'Bug Fixes' section of the release notes.",
"changelogTitle": "Bug Fixes",
},
{
"name": "type: docs",
"description": "List this PR in the 'Docs' section of the release notes.",
"changelogTitle": "Docs",
},
{
"name": "breaking change",
"description": "Add this label to a PR to create a major release when merged.",
"releaseType": "major",
"changelogTitle": "Breaking Changes",
},
{
"name": "version: major",
"description": "Use only on PRs to the release branch. Increments the major version when merged.",
"releaseType": "major",
"changelogTitle": "Misc",
},
{
"name": "version: minor",
"releaseType": "minor",
"description": "Use only on PRs to the release branch. Increments the minor version when merged.",
"changelogTitle": "Misc",
},
{
"name": "version: hotfix",
"description": "Use only on PRs to the release branch. Increments the patch version when merged.",
"releaseType": "patch",
"changelogTitle": "Misc",
},
{
"name": "patch",
"description": "Default release notes grouping for unlabeled PRs",
"changelogTitle": "Features",
"overwrite": true,
},
{
"name": "pushToBaseBranch",
"description": "Release notes grouping for commits made directly to the release branch.",
"changelogTitle": "Misc"
},
]
}