Skip to content

Commit

Permalink
Fix integration tests not running in pull requests (#377)
Browse files Browse the repository at this point in the history
Fixed integration tests being skipped in pull requests.
  • Loading branch information
asafgabai authored Jul 19, 2023
1 parent c101b1a commit 6e3de73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
if: github.event_name == 'schedule' || github.event_name == 'push' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'safe to test'))
if: github.event_name == 'schedule' || github.event_name == 'push' || (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test'))
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down

0 comments on commit 6e3de73

Please sign in to comment.