Skip to content

Commit 297cb10

Browse files
authored
Merge pull request #7361 from dibarbet/fix_merge_pipeline
Switch to on branch push for merges
2 parents f755706 + 248fc3d commit 297cb10

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.config/branch-merge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
// Merge any release only changes to main.
99
"release": {
10-
"MergeToBranch": "release",
10+
"MergeToBranch": "main",
1111
"ExtraSwitches": "-QuietComments"
1212
}
1313
}

.github/workflows/branch-merge.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
name: Flow release/prerelease changes to main
44
on:
5-
workflow_dispatch:
6-
schedule:
7-
- cron: '0 */3 * * *'
5+
push:
6+
branches:
7+
- 'release'
8+
- 'prerelease'
89

910
permissions:
1011
contents: write

0 commit comments

Comments
 (0)