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"]
4
4
5
5
jobs :
6
6
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
+
7
11
runs-on : ubuntu-latest
8
12
steps :
9
13
- name : Setup Python
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
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
+
9
13
runs-on : ubuntu-latest
10
14
steps :
11
15
- name : Checkout
Original file line number Diff line number Diff line change 1
1
name : Build and test windows wheels
2
2
on :
3
3
push :
4
- branches :
5
- - master
6
- - test
7
4
pull_request :
8
5
create :
9
6
10
7
jobs :
11
8
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
+
12
13
runs-on : windows-latest
13
14
steps :
14
15
- name : Checkout
You can’t perform that action at this time.
0 commit comments