-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add JSON file for PR title checker
- Loading branch information
1 parent
1068b31
commit bed8d40
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"LABEL": { | ||
"name": "title needs formatting", | ||
"color": "F9D0C4" | ||
}, | ||
"CHECKS": { | ||
"prefixes": [ | ||
"build: ", | ||
"chore: ", | ||
"docs: ", | ||
"feat: ", | ||
"fix: ", | ||
"perf: ", | ||
"refactor: ", | ||
"revert: ", | ||
"style: ", | ||
"test: " | ||
] | ||
}, | ||
"MESSAGES": { | ||
"success": "Everything is great. Status: 200", | ||
"failure": "PR title does not conform to the required format. Please use one of the specified prefixes followed by a colon and a space. Status: 400", | ||
"notice": "" | ||
} | ||
} |