ci: fix typo in skip if for TPU (#17757)
* ci: fix typo in skip if for TPU * > * $ * \ * | * blablab * rew
This commit is contained in:
parent
26088eef12
commit
a901571fdf
|
@ -29,7 +29,7 @@ jobs:
|
||||||
# run only when the PR title contains 'TPU' or is a merge to master
|
# run only when the PR title contains 'TPU' or is a merge to master
|
||||||
if: |
|
if: |
|
||||||
(github.event_name == 'push' && github.ref == 'refs/heads/master') ||
|
(github.event_name == 'push' && github.ref == 'refs/heads/master') ||
|
||||||
(startsWith(github.event_name, 'pull_request') && ( contains(github.event.pull_request.title, 'TPU'))
|
(startsWith(github.event_name, 'pull_request') && contains(github.event.pull_request.title, 'TPU'))
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
Loading…
Reference in New Issue