From fd36bec497664b82f3975ab528f5dc35ba63a764 Mon Sep 17 00:00:00 2001 From: Chris Gavin Date: Fri, 20 Nov 2020 11:47:43 +0000 Subject: [PATCH] Skip Runner integration tests on pull requests from forks. --- .github/workflows/integration-testing.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 8a2a8bc6a..b3a04aa53 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -435,6 +435,8 @@ jobs: runner-upload-sarif: runs-on: ubuntu-latest + if: ${{ github.event_name != 'pull_request' || github.event.pull_request.base.repo.id == github.event.pull_request.head.repo.id }} + steps: - uses: actions/checkout@v2