From 5f1d17984a8ca112838401ccdd971d59592e32be Mon Sep 17 00:00:00 2001 From: Yinan Qin Date: Thu, 30 Jul 2026 00:43:54 +0800 Subject: [PATCH] fix(ci): change missed pull_request to pull_request_target Changed the event condition for PR title check from 'pull_request' to 'pull_request_target'. Signed-off-by: Yinan Qin --- .github/workflows/issue_pr_comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_pr_comment.yml b/.github/workflows/issue_pr_comment.yml index 6c1a63953..3bce707ce 100644 --- a/.github/workflows/issue_pr_comment.yml +++ b/.github/workflows/issue_pr_comment.yml @@ -78,7 +78,7 @@ jobs: pr-title-check: runs-on: ubuntu-latest - if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request_target' steps: - name: Check PR title for required prefix and comment uses: actions/github-script@v9