Skip to content

Commit

Permalink
Merge bd64697 into 1eefea0
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoyadmoon committed Jan 21, 2020
2 parents 1eefea0 + bd64697 commit ff49cdf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to author to set pr author as assignee
addAssignees: author

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- kyoyadmoon
- tz5514
- chenesan
- zhusee2
- benny0642

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

# A list of keywords to be skipped the process that add reviewers if pull requests include it
skipKeywords:
- wip
- WIP
16 changes: 16 additions & 0 deletions .github/workflows/assign_pr_reviewer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Auto Assign Assignees and Reviewers on PR'

on:
pull_request:
types:
- opened
branches:
- develop

jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.0.1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit ff49cdf

Please sign in to comment.