File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ on: [push, pull_request]
5
5
jobs :
6
6
ubuntu :
7
7
runs-on : ubuntu-latest
8
+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
8
9
steps :
9
10
- name : checkout
10
11
uses : actions/checkout@v4
17
18
18
19
macos :
19
20
runs-on : macos-latest
21
+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
20
22
steps :
21
23
- name : checkout
22
24
uses : actions/checkout@v4
27
29
28
30
windows :
29
31
runs-on : windows-latest
32
+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
30
33
steps :
31
34
- name : Prepare Git for Checkout on Windows
32
35
run : |
You can’t perform that action at this time.
0 commit comments