Skip to content

Commit 4f5b173

Browse files
Copilotnicomacr
andauthored
Use array syntax for workflow branch triggers to support both version and master branches (#86)
* [FIX] Adjust workflow triggers to include master branches Co-authored-by: nicomacr <7657373+nicomacr@users.noreply.github.com> --------- Co-authored-by: Nicolas Mac Rouillon <nicolasmacr@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: nicomacr <7657373+nicomacr@users.noreply.github.com>
1 parent 45b2b35 commit 4f5b173

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/push_to_another_repo.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
on:
22
push:
3-
branches: "*.0-*"
3+
branches:
4+
- "*.0-*"
5+
- "*master*"
46
pull_request:
5-
branches: "*.0"
7+
branches:
8+
- "*.0-*"
9+
- "*master*"
610

711
jobs:
812
build:

0 commit comments

Comments
 (0)