We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d2c1a commit 457a12cCopy full SHA for 457a12c
1 file changed
.github/workflows/run_tests.yml
@@ -204,8 +204,10 @@ jobs:
204
always() &&
205
!endsWith(github.event.head_commit.message, '# ci skip') &&
206
github.event_name == 'push' &&
207
- needs.run_tester.result == 'success' ||
208
- !startsWith(github.ref, 'refs/heads/test_benchmark')
+ (
+ needs.run_tester.result == 'success' ||
209
+ startsWith(github.ref, 'refs/heads/test_benchmark')
210
+ )
211
212
steps:
213
0 commit comments