Skip to content

Commit a76c3ef

Browse files
authored
Merge pull request #3138 from athenianco/DEV-5554-fix-conditions
[DEV-5554] fix conditions
2 parents 9747c2e + 39b91a0 commit a76c3ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
test:
204204
name: Test suite
205205
needs: check_membership
206-
if: "!contains(github.event.head_commit.message, 'Bump version') || github.event_name != 'push' && needs.check_membership.outputs.skip != 'true'"
206+
if: "(!contains(github.event.head_commit.message, 'Bump version') || github.event_name != 'push') && needs.check_membership.outputs.skip != 'true'"
207207
runs-on:
208208
# yes, we over-commit threads to cores x2
209209
labels: ubuntu-latest-32-cores
@@ -390,7 +390,7 @@ jobs:
390390
test-extra:
391391
name: Additional tests
392392
needs: check_membership
393-
if: "!contains(github.event.head_commit.message, 'Bump version') || github.event_name != 'push' && needs.check_membership.outputs.skip != 'true'"
393+
if: "(!contains(github.event.head_commit.message, 'Bump version') || github.event_name != 'push') && needs.check_membership.outputs.skip != 'true'"
394394
runs-on: ubuntu-22.04
395395
concurrency:
396396
group: auth0-${{ github.actor }}-${{ matrix.type == 'user' && 'user' || github.head_ref || github.run_id }}-${{ matrix.db }}-${{ matrix.type }}

0 commit comments

Comments
 (0)