-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Kusitms-POPTATO-DEV/fix/auto-assign
Fix: auto-assign 파일 수정
- Loading branch information
Showing
4 changed files
with
45 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,19 @@ | ||
addReviewers: false | ||
addAssignees: author | ||
# Set to true to add reviewers to pull requests | ||
addReviewers: true | ||
|
||
# Set to true to add assignees to pull requests | ||
addAssignees: author | ||
|
||
# A list of reviewers to be added to pull requests (GitHub user name) | ||
reviewers: | ||
- yeonjookang | ||
- pkl0912 | ||
|
||
# A number of reviewers added to the pull request | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 1 | ||
|
||
# A number of assignees to add to the pull request | ||
# Set to 0 to add all of the assignees. | ||
# Uses numberOfReviewers if unset. | ||
numberOfAssignees: 1 |
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 |
---|---|---|
@@ -1,12 +1,22 @@ | ||
feature: | ||
- "feature/*" | ||
fix: | ||
- "fix/*" | ||
chore: | ||
- "chore/*" | ||
docs: | ||
- "docs/*" | ||
refactor: | ||
- "refactor/*" | ||
bug: | ||
- "bug/*" | ||
labels: | ||
'fix': | ||
include: | ||
- '\bfix\b' | ||
'documentation': | ||
include: | ||
- '\bdocs\b' | ||
'test': | ||
include: | ||
- '\btest\b' | ||
'feature': | ||
include: | ||
- '\bfeat\b' | ||
'bug': | ||
include: | ||
- '\bbug\b' | ||
'refactor': | ||
include: | ||
- '\brefactor\b' | ||
'chore': | ||
include: | ||
- '\bchore\b' |
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