We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2edd1 commit 686efe5Copy full SHA for 686efe5
.github/workflows/check.yml
@@ -3,6 +3,9 @@ on: [ pull_request, push ]
3
jobs:
4
check:
5
runs-on: ${{ matrix.os }}
6
+ # push: always run.
7
+ # pull_request: run only when the PR is submitted from a forked repository, not within this repository.
8
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
9
strategy:
10
fail-fast: false
11
matrix:
0 commit comments