From 384ed051ba32a588e654d45f8af1a400b11de161 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Tue, 17 Feb 2026 03:52:22 -0500 Subject: [PATCH] iterate on Codex label action with the correct operators, limiting to github.event.action == 'labeled' --- .github/workflows/codex-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codex-review.yml b/.github/workflows/codex-review.yml index 998b7471..c06a9690 100644 --- a/.github/workflows/codex-review.yml +++ b/.github/workflows/codex-review.yml @@ -14,7 +14,7 @@ on: jobs: codex-review: - if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'codex') + if: github.event.pull_request.draft == false || (github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 'codex')) runs-on: ubuntu-latest permissions: contents: read