Skip to content

Commit 741d8ef

Browse files
fix(ci): ignore stale mainnet secret in test workflow
1 parent b2eb3a0 commit 741d8ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ on:
77
branches: [ master, dev/v4, dev/v4-fin ]
88

99
env:
10-
PROVIDER_MAINNET: ${{ secrets.MAINNET_PROVIDER || 'https://ethereum.publicnode.com' }}
10+
# The repo secret still points at a rate-limited Infura URL, so CI must use
11+
# the public endpoint directly instead of preferring the secret on push runs.
12+
PROVIDER_MAINNET: 'https://ethereum.publicnode.com'
1113
PROVIDER_ARBITRUM: 'https://arb1.arbitrum.io/rpc'
1214
PROVIDER_XDAI: 'https://rpc.ankr.com/gnosis'
1315

0 commit comments

Comments
 (0)