File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
run_benchmarks :
21
- if : ${{
21
+ if : >-
22
22
(github.event_name == 'push' && contains(github.event.head_commit.message, 'cpu_pytorch')) ||
23
- (github.event_name == 'push') && github.ref == 'refs/heads/main' ||
24
- ( github.event_name == 'workflow_dispatch') ||
25
- contains( github.event.pull_request.labels.*.name, 'leaderboard') ||
26
- contains( github.event.pull_request.labels.*.name, 'cpu ') ||
27
- contains( github.event.pull_request.labels.*.name, 'pytorch ') ||
28
- contains( github.event.pull_request.labels.*.name, 'cpu_pytorch ') ||
29
-
30
- }}
23
+ (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
24
+ github.event_name == 'workflow_dispatch' ||
25
+ ( github.event_name == 'pull_request' && (
26
+ contains(github.event.pull_request.labels.*.name, 'leaderboard ') ||
27
+ contains(github.event.pull_request.labels.*.name, 'cpu ') ||
28
+ contains(github.event.pull_request.labels.*.name, 'pytorch ') ||
29
+ contains(github.event.pull_request.labels.*.name, 'cpu_pytorch')
30
+ ))
31
31
32
32
strategy :
33
33
fail-fast : false
You can’t perform that action at this time.
0 commit comments