Skip to content

Commit

Permalink
Merge pull request #3569 from newrelic/auto-assing-review
Browse files Browse the repository at this point in the history
feat: Add auto-assign review action for writers
  • Loading branch information
bradleycamacho committed Aug 20, 2021
2 parents 5e5ff89 + 387836c commit 12f0c64
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/auto_assign.yml
@@ -0,0 +1,24 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- bradleyrcamacho
- barbnewrelic
- paperclypse
- zuluecho9
- rhetoric101
- urbiz-nr
- x8a
- mmfred
- stumblefiend
- dbarnesbrownNR

# A number of reviewers added to the pull request
# Set 0 to add all the reviewers (default: 0)
numberOfReviewers: 1

filterLabels:
# Run
include:
- from_tw
10 changes: 10 additions & 0 deletions .github/workflows/auto-assign-reviewer.yml
@@ -0,0 +1,10 @@
name: 'Auto Assign'
on:
pull_request:
types: [opened, ready_for_review]

jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.0

0 comments on commit 12f0c64

Please sign in to comment.