From 22bdc549d9c0cc2185d8fb8ef635cf33e0cc9c21 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Thu, 31 Jul 2025 09:26:44 -0700 Subject: [PATCH] add a couple parentheses to help readability slightly --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 5fcca4417..d30ccbe71 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -40,9 +40,9 @@ concurrency: # The "no-run" group ensures that irrelevant label events don't interfere with the real workflows. group: >- ${{ github.workflow }}-${{ github.ref }}-${{ - (github.event.action == 'opened' || github.event.action == 'synchronize') && 'replay' || - (github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests')) && 'rerecord' || - 'no-run' + ((github.event.action == 'opened' || github.event.action == 'synchronize') && 'replay') || + ((github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests')) && 'rerecord' || + 'no-run') }} cancel-in-progress: true