File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ on: ["push", "pull_request"]
44
55jobs :
66 black :
7+ # We want to run on external PRs, but not on our own internal PRs as they'll be run
8+ # by the push to the branch.
9+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
10+
711 runs-on : ubuntu-latest
812 steps :
913 - name : Setup Python
Original file line number Diff line number Diff line change 66
77jobs :
88 build :
9+ # We want to run on external PRs, but not on our own internal PRs as they'll be run
10+ # by the push to the branch.
11+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
12+
913 runs-on : ubuntu-latest
1014 steps :
1115 - name : Checkout
Original file line number Diff line number Diff line change 11name : Build and test windows wheels
22on :
33 push :
4- branches :
5- - master
6- - test
74 pull_request :
85 create :
96
107jobs :
118 build :
9+ # We want to run on external PRs, but not on our own internal PRs as they'll be run
10+ # by the push to the branch.
11+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
12+
1213 runs-on : windows-latest
1314 steps :
1415 - name : Checkout
You can’t perform that action at this time.
0 commit comments