Skip to content

Commit

Permalink
feat: 이슈, PR 작성자 및 PR 리뷰어를 자동으로 추가하는 액션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
limehee committed Jan 7, 2025
1 parent 5689dd8 commit 25c0599
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/auto-assign.yml
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

0 comments on commit 25c0599

Please sign in to comment.