From 77767b6414a05d4dc9f97ff0dd6286228650c91e Mon Sep 17 00:00:00 2001 From: manNomi Date: Tue, 6 Jan 2026 01:33:32 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20pull=5Frequest=5Ftarget=20?= =?UTF-8?q?=EC=9D=B4=EB=B2=A4=ED=8A=B8=20=EC=9D=B4=EB=A6=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - if 조건을 pull_request에서 pull_request_target으로 변경 - on 트리거와 이벤트 이름 불일치로 인한 워크플로우 미실행 문제 해결 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/pr-label-notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-label-notify.yml b/.github/workflows/pr-label-notify.yml index e050803c..f1c25b92 100644 --- a/.github/workflows/pr-label-notify.yml +++ b/.github/workflows/pr-label-notify.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Send Discord notification for PR label - if: github.event_name == 'pull_request' && github.event.label.name == 'need_review' + if: github.event_name == 'pull_request_target' && github.event.label.name == 'need_review' env: DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} PR_NUMBER: ${{ github.event.pull_request.number }}