From a901571fdf676063d500f5a3b6de3a8cc2065adc Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Mon, 5 Jun 2023 20:02:07 +0200 Subject: [PATCH] ci: fix typo in skip if for TPU (#17757) * ci: fix typo in skip if for TPU * > * $ * \ * | * blablab * rew --- .github/workflows/tpu-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tpu-tests.yml b/.github/workflows/tpu-tests.yml index 5602a5fb82..62deb16f9b 100644 --- a/.github/workflows/tpu-tests.yml +++ b/.github/workflows/tpu-tests.yml @@ -29,7 +29,7 @@ jobs: # run only when the PR title contains 'TPU' or is a merge to master if: | (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: fail-fast: false