Skip to content

Commit

Permalink
ci: update integration test logic (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon authored Jul 30, 2024
1 parent 2aa8447 commit a9b6646
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ permissions: read-all
jobs:
integration:
name: integration tests
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
if: |
github.event_name != 'pull_request' ||
(github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit a9b6646

Please sign in to comment.