Skip to content

Commit c70c25d

Browse files
authored
fix(ci): run workflows on pushes to testnet/staging (#1981)
1 parent 17ea3a9 commit c70c25d

File tree

8 files changed

+23
-8
lines changed

8 files changed

+23
-8
lines changed

.github/workflows/build-and-test-go.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: build-go-projects
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/build-and-test-rust.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: build-and-test-rust-projects
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/build-contracts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Build contracts
22
on:
33
push:
4-
branches: [main]
4+
branches:
5+
- testnet
6+
- staging
57
pull_request:
68
branches: ["*"]
79
paths:

.github/workflows/foundry-gas-diff.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Report gas diff
33
on:
44
push:
55
branches:
6-
- main
6+
- testnet
7+
- staging
78
pull_request:
89
# Run only for changes in specific files.
910
paths:

.github/workflows/lint-contracts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Lint contracts
22
on:
33
push:
4-
branches: [main]
4+
branches:
5+
- testnet
6+
- staging
57
pull_request:
68
branches: ["*"]
79
paths:

.github/workflows/test-merkle-tree.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-merkle-tree
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/test-risc-zero.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-risc-zero
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/test-sp1.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-sp1
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

0 commit comments

Comments
 (0)