-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
65 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,50 @@ | ||
reviewers: | ||
defaults: | ||
- 'nkwangleiGIT' | ||
- 0xff-dev | ||
- Abirdcfly | ||
|
||
groups: | ||
cli: | ||
- 0xff-dev | ||
executor: | ||
- 0xff-dev | ||
observer: | ||
- 0xff-dev | ||
scheduler: | ||
- Abirdcfly | ||
tests: | ||
- Abirdcfly | ||
- 'nkwangleiGIT' | ||
|
||
files: | ||
'.github/**': | ||
- tests | ||
'build/**': | ||
- tests | ||
'hack/**': | ||
- tests | ||
'doc/**': | ||
- tests | ||
'**/abctl/**': | ||
- cli | ||
'**/executor/**': | ||
- executor | ||
'**/observer/**': | ||
- observer | ||
'**/scheduler/**': | ||
- scheduler | ||
|
||
options: | ||
ignore_draft: true | ||
ignored_keywords: | ||
- DO NOT REVIEW | ||
- DNR | ||
- DO NOT MERGE | ||
- DNM | ||
- WIP | ||
- WORK IN PROCESS | ||
enable_group_assignment: true | ||
|
||
# Do not set this option if you'd like to assign all matching reviewers. | ||
number_of_reviewers: 3 |
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,15 @@ | ||
name: Auto Request Review | ||
|
||
on: | ||
pull_request: | ||
types: [opened, ready_for_review, reopened] | ||
|
||
jobs: | ||
auto-request-review: | ||
name: Auto Request Review | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Request review based on files changes and/or groups the author belongs to | ||
uses: necojackarc/auto-request-review@v0.8.0 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |