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 2aa8447 commit a9b6646Copy full SHA for a9b6646
.github/workflows/tests.yml
@@ -27,7 +27,10 @@ permissions: read-all
27
jobs:
28
integration:
29
name: integration tests
30
- if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
+ # run integration tests on all builds except pull requests from forks or dependabot
31
+ if: |
32
+ github.event_name != 'pull_request' ||
33
+ (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
34
runs-on: ${{ matrix.os }}
35
strategy:
36
matrix:
0 commit comments