Skip to content

Commit

Permalink
feat: add an action to auto assign a reviewer to pr
Browse files Browse the repository at this point in the history
  • Loading branch information
tktcorporation committed Feb 17, 2022
1 parent 3aff6ef commit 1dba922
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
addReviewers: false
addAssignees: true

assignees:
- tktcorporation

skipKeywords:
- wip

numberOfAssignees: 0
10 changes: 10 additions & 0 deletions .github/workflows/pr-auto-assign.yml
Original file line number Diff line number Diff line change
@@ -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.1

0 comments on commit 1dba922

Please sign in to comment.