File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 15
15
VER_SCRIPT2 : " d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))"
16
16
17
17
jobs :
18
+ printJob :
19
+ name : Print event
20
+
21
+ runs-on : ubuntu-latest
22
+
23
+ steps :
24
+ - name : Dump GitHub context
25
+ env :
26
+ GITHUB_CONTEXT : ${{ toJson(github) }}
27
+ run : |
28
+ echo "$GITHUB_CONTEXT"
29
+
30
+
18
31
build_linux :
19
32
runs-on : ubuntu-latest
20
33
@@ -417,7 +430,7 @@ jobs:
417
430
needs : test_linux
418
431
419
432
if : |
420
- ! github.event.pull_request.head.repo.fork &&
433
+ ( github.repository == 'IntelPython/dpnp') &&
421
434
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
422
435
423
436
runs-on : ubuntu-latest
@@ -456,7 +469,7 @@ jobs:
456
469
needs : test_windows
457
470
458
471
if : |
459
- ! github.event.pull_request.head.repo.fork && !github.event.push.repository.fork &&
472
+ ( github.repository == 'IntelPython/dpnp') &&
460
473
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
461
474
462
475
runs-on : windows-latest
You can’t perform that action at this time.
0 commit comments