forked from Builditluc/wiki-tui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.autorc
29 lines (27 loc) · 1.82 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
{
"plugins": [
"first-time-contributor",
[
"omit-release-notes",
{
"labels": "ignore-release"
}
]
],
"owner": "builditluc",
"repo": "wiki-tui",
"baseBranch": "main",
"noDefaultLabels": true,
"labels": [
{ "name": "breaking-change", "description": "This introduces a breaking change to the codebase. Increment the major version", "changelogTitle": "Breaking Changes 🛠", "releaseType": "major", "color": "#b60205" },
{ "name": "type: bug", "description": "This fixes a bug. Increment the minor version", "changelogTitle": "Bug Fixes 🐛", "releaseType": "patch", "color": "#b60205" },
{ "name": "type: chore", "description": "Updates to the build process or dependency updates", "changelogTitle": "CI Pipeline and Dependency Updates", "releaseType": "none", "color": "#fef2c0" },
{ "name": "type: documentation", "description": "Changes to the documentation (in code and external documentation)", "changelogTitle": "Documentation Changes", "releaseType": "none", "color": "#1d76db" },
{ "name": "type: feature", "description": "Implements a new feature", "changelogTitle": "Exciting New Features 🎉", "releaseType": "minor", "color": "#a2eeef" },
{ "name": "type: refactor", "description": "Changes to the style and structure of the codebase or project", "changelogTitle": "Structure and Style Changes", "releaseType": "none", "color": "#bfdadc" },
{ "name": "type: testing", "description": "Changes to the tests", "changelogTitle": "Tests", "releaseType": "none", "color": "#f9d0c4" },
{ "name": "ignore-release", "description": "This won't be included in the release notes", "releaseType": "skip", "color": "#5ceb33" },
{ "name": "other", "releaseType": "none", "default": true, "changelogTitle": "Other Changes" }
],
"changelog": { "message": "Update Changelog" }
}