We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f31cd commit 8f4270bCopy full SHA for 8f4270b
.github/workflows/integration-tests.yml
@@ -18,6 +18,8 @@ on:
18
19
jobs:
20
integration-tests:
21
+ # Skip integration tests for PRs from forks (they don't have access to secrets)
22
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
23
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
24
permissions:
25
contents: read
0 commit comments