We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea278b commit 1ab6ecfCopy full SHA for 1ab6ecf
.github/workflows/test.yml
@@ -14,6 +14,10 @@ jobs:
14
# Matrix test for all supported platforms and architectures
15
16
integration-tests:
17
+ # Skip our integration tests if the PR is from a fork. This has the consequence of
18
+ # disabling these even if the PR is from a forked repo into itself, but given that
19
+ # these tests are very specific to our internal test environment that is a good thing.
20
+ if: ${{ !github.event.repository.fork }}
21
name: ${{ matrix.os }} (${{ matrix.arch }}) (${{ matrix.credential-type }}) tailscale-${{ matrix.version }}
22
strategy:
23
fail-fast: false
0 commit comments