Skip to content

Commit 0d47eaa

Browse files
authored
Limit nightly CI runs to original repository (#4148)
1 parent a0b1a17 commit 0d47eaa

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/node-versions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
tests:
9+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
910
runs-on: ubuntu-latest
1011
strategy:
1112
matrix:

.github/workflows/other-nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ env:
99

1010
jobs:
1111
test-ethash:
12+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v5
@@ -25,6 +26,7 @@ jobs:
2526
working-directory: ${{ github.workspace }}/packages/ethash
2627

2728
test-client:
29+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
2830
runs-on: ubuntu-latest
2931
steps:
3032
- uses: actions/checkout@v5
@@ -41,6 +43,7 @@ jobs:
4143
working-directory: ${{ github.workspace }}/packages/client
4244

4345
test-devp2p:
46+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
4447
runs-on: ubuntu-latest
4548
steps:
4649
- uses: actions/checkout@v5
@@ -57,6 +60,7 @@ jobs:
5760
working-directory: ${{ github.workspace }}/packages/devp2p
5861

5962
test-wallet:
63+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
6064
runs-on: ubuntu-latest
6165
steps:
6266
- uses: actions/checkout@v5

.github/workflows/vm-nightly-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ defaults:
1313

1414
jobs:
1515
test-vm-api:
16+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
1617
runs-on: ubuntu-latest
1718
steps:
1819
- uses: actions/checkout@v5
@@ -29,6 +30,7 @@ jobs:
2930
# - run: npm run test:API:browser
3031

3132
test-vm-state:
33+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
3234
runs-on: ubuntu-latest
3335
steps:
3436
- uses: actions/checkout@v5
@@ -46,6 +48,7 @@ jobs:
4648
- run: npm run test:state:allForks
4749

4850
test-vm-blockchain:
51+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
4952
runs-on: ubuntu-latest
5053
steps:
5154
- uses: actions/checkout@v5
@@ -64,6 +67,7 @@ jobs:
6467
working-directory: '${{ env.cwd }}'
6568

6669
test-vm-slow:
70+
if: github.repository == 'ethereumjs/ethereumjs-monorepo'
6771
runs-on: ubuntu-latest
6872
steps:
6973
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)