We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ec34f commit 5dff931Copy full SHA for 5dff931
1 file changed
.github/workflows/test.yml
@@ -11,6 +11,8 @@ concurrency:
11
12
jobs:
13
test:
14
+ # Only run for pushes or PRs from within the repo (not forks)
15
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
16
runs-on: ubuntu-latest
17
strategy:
18
matrix:
0 commit comments