Skip to content

Commit

Permalink
feat: assignees 부분 pull_request.sender -> sender 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsu5582 committed Jul 23, 2024
1 parent 14e3a18 commit 9ce7533
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/assgin-reviewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,27 @@ jobs:
assign-reviewer:
runs-on: ubuntu-latest
steps:
- name: Logging Response
run: |
echo "PULL_REQUEST = $(jq .pull_request <<< "${{ toJson(github.event.pull_request) }}")"
echo "SENDER = $(jq .sender <<< "${{ toJson(github.event.sender) }}")"

- name: All Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: ashsty, jcoding-play, hjk0761, youngsu5582, 00kang, pp449, chlwlstlf
assignees: ${{ github.event.pull_request.sender.login }}
assignees: ${{ github.event.sender.login }}
includeLabels: ALL

- name: Backend Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: ashsty, jcoding-play, hjk0761, youngsu5582
assignees: ${{ github.event.pull_request.sender.login }}
assignees: ${{ github.event.sender.login }}
includeLabels: BE

- name: Frontend Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: 00kang, pp449, chlwlstlf
assignees: ${{ github.event.pull_request.sender.login }}
assignees: ${{ github.event.sender.login }}
includeLabels: FE

0 comments on commit 9ce7533

Please sign in to comment.