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
| {
| "LABEL": {
| "name": "title needs formatting",
| "color": "EEEEEE"
| },
| "CHECKS": {
| "prefixes": [
| "fix: ",
| "feat: ",
| "docs: ",
| "chore: ",
| "chore(deps): ",
| "ci: ",
| "perf: ",
| "refactor: ",
| "style: ",
| "test: "
| ],
| "ignoreLabels": [
| "skip-changelog",
| "skip-ci"
| ]
| },
| "MESSAGES": {
| "success": "PR title is valid",
| "failure": "PR title is invalid",
| "notice": "Valid prefixes are: fix, feat, docs, chore, ci, perf, refactor, style, test."
| }
| }
|
|