From 55fb419b5421d16434a7aacc4f4033c2d836fba6 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Mon, 16 Feb 2026 16:17:25 -0500 Subject: [PATCH] fix operator in Codex review condition --- .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 15fb3dcb..f0d7be5c 100644 --- a/.github/workflows/codex-review.yml +++ b/.github/workflows/codex-review.yml @@ -6,7 +6,7 @@ on: jobs: codex-review: - if: github.event.pull_request.draft == false or contains(github.event.pull_request.labels.*.name, 'codex') + if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'codex') runs-on: ubuntu-latest permissions: contents: read