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 ad1bd63 commit 7f332aeCopy full SHA for 7f332ae
.github/workflows/actions.yml
@@ -5,6 +5,9 @@ on: [push, pull_request]
5
jobs:
6
linux:
7
runs-on: ${{matrix.os}}
8
+ # allows CI PR runs only from external repos
9
+ # in other cases push event is used to run it
10
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'PDAL/java'
11
12
strategy:
13
matrix:
@@ -46,6 +49,9 @@ jobs:
46
49
47
50
macos:
48
51
52
53
54
55
56
57
0 commit comments