-
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 from no…
…n-maintainers (#5896) 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
cf8fb1c
commit 9d71639
Showing
2 changed files
with
21 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,7 @@ | ||
reviewers: | ||
defaults: | ||
- team:contour-reviewers | ||
|
||
options: | ||
ignore_draft: true | ||
number_of_reviewers: 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Request Reviews | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, ready_for_review, reopened] | ||
|
||
jobs: | ||
request-reviews: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: necojackarc/[email protected] | ||
with: | ||
token: ${{ secrets.PAT_FOR_AUTO_REQUEST_REVIEW }} | ||
config: .github/reviewers.yaml |