add a couple parentheses to help readability slightly

This commit is contained in:
Ashwin Bharambe 2025-07-31 09:26:44 -07:00 committed by GitHub
parent 9b50ceb817
commit 22bdc549d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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