Skip to content

Commit

Permalink
Auto assign reviewers (#4254)
Browse files Browse the repository at this point in the history
* Create auto_assign.yml

* Create auto_assign_reviewer.yml
  • Loading branch information
gladjohn authored Jul 18, 2023
1 parent 9c96bf2 commit a048520
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: false

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- pmaytak
- gladjohn
- bgavrilMS
- neha-bhargava
- trwalke

# A number of reviewers added to the pull request
# Set 0 to add all the reviewers (default: 0)
# numberOfReviewers: 2
10 changes: 10 additions & 0 deletions .github/workflows/auto_assign_reviewer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: 'Auto Assign'
on:
pull_request_target:
types: [opened, ready_for_review]

jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/[email protected]

0 comments on commit a048520

Please sign in to comment.