From 6ff32c6c3e4de5caee727a70ff4ccbca33471cc0 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 12 Nov 2025 16:11:42 +0000 Subject: [PATCH] build: look for the correct event name `pull_request_target` for triggering security review --- .github/workflows/gemini-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gemini-review.yml b/.github/workflows/gemini-review.yml index ea7e87226..cc1bc7904 100644 --- a/.github/workflows/gemini-review.yml +++ b/.github/workflows/gemini-review.yml @@ -17,7 +17,7 @@ jobs: # 89942104 is the user id for the angular robot account. if: | ( - github.event_name == 'pull_request' && + github.event_name == 'pull_request_target' && github.event.pull_request.user.id == '89942104' ) runs-on: 'ubuntu-latest'