Skip to content

Commit a8b2e8f

Browse files
author
Farhad Alizada
committed
Onboard new inter-branch merge flow [Configuration]
1 parent d0ccce0 commit a8b2e8f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

github-merge-flow.jsonc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 cli release/6.0.1xx to .4xx
5+
"release/6.0.1xx":{
6+
"MergeToBranch": "release/6.0.4xx",
7+
"ExtraSwitches": "-QuietComments"
8+
},
9+
// Automate opening PRs to merge cli release/6.0.4xx to 8.0.1xx
10+
"release/6.0.4xx":{
11+
"MergeToBranch": "release/8.0.1xx",
12+
"ExtraSwitches": "-QuietComments"
13+
},
14+
// Automate opening PRs to merge cli release/8.0.1xx to 8.0.3xx
15+
"release/8.0.1xx":{
16+
"MergeToBranch": "release/8.0.3xx",
17+
"ExtraSwitches": "-QuietComments"
18+
},
19+
// Automate opening PRs to merge cli release/8.0.3xx to 8.0.4xx
20+
"release/8.0.3xx":{
21+
"MergeToBranch": "release/8.0.4xx",
22+
"ExtraSwitches": "-QuietComments"
23+
},
24+
// Automate opening PRs to merge sdk repos from release/8.0.4xx to main
25+
"release/8.0.4xx":{
26+
"MergeToBranch": "main",
27+
"ExtraSwitches": "-QuietComments"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)