Skip to content

Commit ff4579a

Browse files
authored
Merge pull request #666 from newrelic/develop
auto assign bot 🤖
2 parents 92283bc + 2cf1d2c commit ff4579a

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/auto_assign.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Set to true to add reviewers to pull requests
2+
addReviewers: true
3+
4+
# Set to true to add assignees to pull requests
5+
addAssignees: false
6+
7+
# A list of reviewers to be added to pull requests (GitHub user name)
8+
reviewers:
9+
- newrelic/go-reviewers
10+
11+
# A number of reviewers added to the pull request
12+
# Set 0 to add all the reviewers (default: 0)
13+
numberOfReviewers: 1
14+
# A list of assignees, overrides reviewers if set
15+
# assignees:
16+
# - assigneeA
17+
18+
# A number of assignees to add to the pull request
19+
# Set to 0 to add all of the assignees.
20+
# Uses numberOfReviewers if unset.
21+
# numberOfAssignees: 2
22+
23+
# A list of keywords to be skipped the process that add reviewers if pull requests include it
24+
# skipKeywords:
25+
# - wip

.github/workflows/autoassign.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: 'Auto Assign'
2+
on:
3+
pull_request:
4+
types: [opened, ready_for_review]
5+
6+
jobs:
7+
add-reviews:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: kentaro-m/[email protected]
11+
with:
12+
configuration-path: '.github/workflows/auto_assign.yml'
13+

0 commit comments

Comments
 (0)