-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: request reviews from all core/app engineers (#1558)
Closes #1556
- Loading branch information
Showing
2 changed files
with
37 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,14 @@ | ||
# More info at https://github.com/necojackarc/auto-request-review | ||
reviewers: | ||
defaults: | ||
- cmwaters | ||
- evan-forbes | ||
- ninabarbakadze | ||
- rach-id | ||
- rootulp | ||
|
||
options: | ||
ignore_draft: true | ||
ignored_keywords: | ||
- DO NOT REVIEW | ||
enable_group_assignment: false |
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,23 @@ | ||
name: pr-review-requester | ||
|
||
on: | ||
# pull_request_target is used to allow forks write permissions when running | ||
# this workflow. With the pull_request trigger, forks do not have any write | ||
# access for security reasons, however write access is needed in order to | ||
# request reviews. Since this workflow is simply requesting reviewers, it is | ||
# safe to allow forks write access. | ||
pull_request_target: | ||
|
||
jobs: | ||
auto-request-review: | ||
name: Auto request reviews | ||
uses: celestiaorg/.github/.github/workflows/[email protected] | ||
secrets: inherit | ||
# write access for issues and pull requests is needed because the called | ||
# workflow requires write access to issues and pull requests and the | ||
# permissions must match | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
with: | ||
run-auto-request-review: true |