Skip to content

Commit a9b6646

Browse files
ci: update integration test logic (#1138)
1 parent 2aa8447 commit a9b6646

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ permissions: read-all
2727
jobs:
2828
integration:
2929
name: integration tests
30-
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
30+
# 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]')
3134
runs-on: ${{ matrix.os }}
3235
strategy:
3336
matrix:

0 commit comments

Comments
 (0)