From 7920783876274d9aacd4697a185c351d2d476cb5 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Mon, 25 Apr 2022 13:03:02 -0700 Subject: [PATCH] Fix workflow syntax error (#48842) --- .github/workflows/twoslash-repros.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/twoslash-repros.yaml b/.github/workflows/twoslash-repros.yaml index 1e782f8cf98..9563d72136c 100644 --- a/.github/workflows/twoslash-repros.yaml +++ b/.github/workflows/twoslash-repros.yaml @@ -20,9 +20,8 @@ on: jobs: run: - if: ${{ !github.event.label && !github.event.inputs.bisect_issue }} + if: ${{ github.repository == 'microsoft/TypeScript' && !github.event.label && !github.event.inputs.bisect_issue }} runs-on: ubuntu-latest - if: github.repository == 'microsoft/TypeScript' steps: - name: Use node uses: actions/setup-node@v1