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 ab3643c commit e92abf6Copy full SHA for e92abf6
.github/workflows/ci.yml
@@ -371,6 +371,8 @@ jobs:
371
files: package/*
372
373
deploy-testing:
374
+ # Don't run on pull request from forks since they don't have access to all the needed secrets
375
+ if: github.event_name == 'push' || (github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork)
376
strategy:
377
fail-fast: false
378
matrix:
0 commit comments