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.
1 parent 2813eec commit 9c0f325Copy full SHA for 9c0f325
.github/workflows/cmake.yml
@@ -7,7 +7,8 @@ env:
7
8
jobs:
9
build:
10
- if: github.repository_owner == 'raspberrypi'
+ # Prevent running twice for PRs from same repo
11
+ if: github.repository_owner == 'raspberrypi' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)
12
runs-on: [self-hosted, Linux, X64]
13
strategy:
14
fail-fast: false
0 commit comments