-
Notifications
You must be signed in to change notification settings - Fork 690
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use necojackarc/auto-request-review action to request reviews
CODEOWNERS only allows requesting reviews from users/teams with owner permission on the repo Use this action which should not require the reviewers github team to have owner permissions Signed-off-by: Sunjay Bhatia <[email protected]>
- Loading branch information
1 parent
6917d85
commit 312451d
Showing
2 changed files
with
22 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,8 @@ | ||
reviewers: | ||
defaults: | ||
- team:projectcontour/maintainers | ||
- team:projectcontour/reviewers | ||
|
||
options: | ||
ignore_draft: true | ||
number_of_reviewers: 2 |
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,14 @@ | ||
name: Request Reviews | ||
|
||
on: | ||
pull_request: | ||
types: [opened, ready_for_review, reopened] | ||
|
||
jobs: | ||
request-reviews: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: necojackarc/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config: .github/reviewers.yaml |