Skip to content

Commit 3ec25f6

Browse files
Add pull_request trigger
We want the workflows building the cross chain projects to execute when changes are commited to the feature branches of PRs modifying files of those projects. We had all the config required to do that, except the most important part - the `pull_request` trigger, which we somehow missed.
1 parent e62c262 commit 3ec25f6

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/cross-chain-arbitrum.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
paths:
1010
- "cross-chain/arbitrum/**"
1111
- ".github/workflows/cross-chain-arbitrum.yml"
12+
pull_request:
1213

1314
jobs:
1415
contracts-detect-changes:

.github/workflows/cross-chain-optimism.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
paths:
1010
- "cross-chain/optimism/**"
1111
- ".github/workflows/cross-chain-optimism.yml"
12+
pull_request:
1213

1314
jobs:
1415
contracts-detect-changes:

.github/workflows/cross-chain-polygon.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
paths:
1010
- "cross-chain/polygon/**"
1111
- ".github/workflows/cross-chain-polygon.yml"
12+
pull_request:
1213

1314
jobs:
1415
contracts-detect-changes:

0 commit comments

Comments
 (0)