Skip to content

Commit b497007

Browse files
committed
actually we want all PRs EXCEPT when source branch is devnet or testnet
1 parent a863e15 commit b497007

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/update-chainspec.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ concurrency:
77
on:
88
pull_request:
99
branches:
10-
- devnet-ready
10+
- "**" # This ensures it triggers on all target branches
11+
paths-ignore:
12+
- "devnet/**"
13+
- "testnet/**"
1114

1215
workflow_dispatch:
1316
inputs:

0 commit comments

Comments
 (0)