ci: fix typo in skip if for TPU (#17757)

* ci: fix typo in skip if for TPU

* >

* $

* \

* |

* blablab

* rew
This commit is contained in:
Jirka Borovec 2023-06-05 20:02:07 +02:00 committed by GitHub
parent 26088eef12
commit a901571fdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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