File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments