File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "merge-flow-configurations" : {
3
+ // Merge any prerelease only changes to main.
4
+ "prerelease" : {
5
+ "MergeToBranch" : " main" ,
6
+ "ExtraSwitches" : " -QuietComments"
7
+ },
8
+ // Merge any release only changes to main.
9
+ "release" : {
10
+ "MergeToBranch" : " release" ,
11
+ "ExtraSwitches" : " -QuietComments"
12
+ }
13
+ }
14
+ }
Original file line number Diff line number Diff line change
1
+ # Merges any changes from release/prerelease to main (e.g. servicing changes)
2
+
3
+ name : Flow release/prerelease changes to main
4
+ on :
5
+ workflow_dispatch :
6
+ schedule :
7
+ - cron : ' 0 */3 * * *'
8
+
9
+ permissions :
10
+ contents : write
11
+ pull-requests : write
12
+
13
+ jobs :
14
+ check-script :
15
+ uses : dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@main
16
+ with :
17
+ configuration_file_path : ' .config/branch-merge.json'
You can’t perform that action at this time.
0 commit comments