이달의 생일자 조회 시 관리자와 방문자 계정을 노출되지 않도록 수정 #6
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
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 |