Skip to content

Commit ad7ccf4

Browse files
Update env vars
1 parent 36c3b86 commit ad7ccf4

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/health-checks.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: E2E Tests and Health Checks
22

33
on:
44
schedule:
5-
- cron: '*/30 * * * *'
5+
- cron: '*/30 * * * *'
66
workflow_dispatch:
77
inputs:
88
datil_branch:
@@ -14,13 +14,20 @@ on:
1414
required: true
1515
default: 'naga'
1616

17+
env:
18+
LIT_STATUS_WRITE_KEY: ${{ secrets.LIT_STATUS_WRITE_KEY }}
19+
LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }}
20+
1721
jobs:
1822
datil-health-check:
1923
runs-on: ubuntu-latest
2024
strategy:
2125
fail-fast: false
2226
matrix:
2327
network: [datil-dev, datil-test, datil]
28+
max-parallel: 1
29+
env:
30+
PRIVATE_KEYS: ${{ secrets.PRIVATE_KEYS }}
2431
steps:
2532
- name: Checkout datil branch
2633
uses: actions/checkout@v4
@@ -40,10 +47,15 @@ jobs:
4047

4148
naga-health-check:
4249
runs-on: ubuntu-latest
50+
needs: datil-health-check
4351
strategy:
4452
fail-fast: false
4553
matrix:
4654
network: [naga-dev, naga-staging, naga-test]
55+
max-parallel: 1
56+
env:
57+
LIVE_MASTER_ACCOUNT: ${{ secrets.LIVE_MASTER_ACCOUNT }}
58+
LIT_YELLOWSTONE_PRIVATE_RPC_URL: ${{ vars.LIT_YELLOWSTONE_PRIVATE_RPC_URL }}
4759
steps:
4860
- name: Checkout naga branch
4961
uses: actions/checkout@v4

0 commit comments

Comments
 (0)