File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Inter-branch merge workflow
2+ on :
3+ push :
4+ branches :
5+ - release/**
6+
7+ permissions :
8+ contents : write
9+ pull-requests : write
10+
11+ jobs :
12+ Merge :
13+ uses : dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@main
Original file line number Diff line number Diff line change 1+ // IMPORTANT: This file is read by the merge flow from main branch only.
2+ {
3+ "merge-flow-configurations" : {
4+ // Automate opening PRs to merge release/9.0 to main
5+ "release/9.0" :{
6+ "MergeToBranch" : " main" ,
7+ "ExtraSwitches" : " -QuietComments"
8+ },
9+ // Automate opening PRs to merge release/9.0-rc1 to release/9.0
10+ "release/9.0-rc1" :{
11+ "MergeToBranch" : " release/9.0" ,
12+ "ExtraSwitches" : " -QuietComments"
13+ },
14+ // Automate opening PRs to merge release/9.0-rc2 to release/9.0
15+ "release/9.0-rc2" :{
16+ "MergeToBranch" : " release/9.0" ,
17+ "ExtraSwitches" : " -QuietComments"
18+ }
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments