Skip to content

Commit

Permalink
ci: skip integration tests on fork PRs (#2282)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon authored Aug 2, 2024
1 parent a25615b commit 2115513
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
integration:
name: integration tests
# 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 2115513

Please sign in to comment.