Skip to content

Commit 457a12c

Browse files
fix logic (#402)
1 parent f9d2c1a commit 457a12c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ jobs:
204204
always() &&
205205
!endsWith(github.event.head_commit.message, '# ci skip') &&
206206
github.event_name == 'push' &&
207-
needs.run_tester.result == 'success' ||
208-
!startsWith(github.ref, 'refs/heads/test_benchmark')
207+
(
208+
needs.run_tester.result == 'success' ||
209+
startsWith(github.ref, 'refs/heads/test_benchmark')
210+
)
209211
210212
steps:
211213

0 commit comments

Comments
 (0)