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.
2 parents 9ebcb1f + 8b6780f commit ed84fc0Copy full SHA for ed84fc0
.github/workflows/build.yml
@@ -5,7 +5,7 @@ on: [push, pull_request]
5
jobs:
6
build:
7
# Skip building pull requests from the same repository
8
- if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != '${{ github.repository }}'
+ if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) }}
9
runs-on: ${{ matrix.os }}
10
strategy:
11
fail-fast: false
0 commit comments