refactor : useMutation으로 api 호출 방식 통일 #18
Workflow file for this run
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 Assign Reviewers | |
on: | |
pull_request: | |
types: [opened, reopened] | |
permissions: | |
pull-requests: write | |
jobs: | |
assign-reviewers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Run action (auto-assign-reviewer/action.yml) | |
uses: nijuy/auto-reviewer-assign@main | |
with: | |
github_token: ${{ secrets.REVIEWER_GITHUB_TOKEN }} | |
code_owners: ${{ vars.CODE_OWNERS }} | |
reviewer_count: 3 |