Merge pull request #314 from github/skip-integration-tests-prs-from-forks

Skip Runner integration tests on pull requests from forks.
This commit is contained in:
Chris Gavin 2020-11-20 12:27:46 +00:00 committed by GitHub
commit 6d232b4ec8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -466,6 +466,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