-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 이슈, PR 작성자 및 PR 리뷰어를 자동으로 추가하는 액션 추가
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Auto Assignees and PR Reviewers | ||
|
||
on: | ||
issues: | ||
types: [ opened ] | ||
pull_request: | ||
types: [ opened, ready_for_review ] | ||
|
||
jobs: | ||
auto_assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Assign Issue assignees | ||
if: ${{ github.event_name == 'issues' }} | ||
uses: actions-ecosystem/action-add-assignees@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
assignees: ${{ github.actor }} | ||
|
||
- name: Assign PR reviewers | ||
if: ${{ github.event_name == 'pull_request' }} | ||
uses: hkusu/review-assign-action@v1 | ||
with: | ||
assignees: ${{ github.actor }} | ||
reviewers: mingmingmon, SongJaeHoonn, limehee |