-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
github-merge-flow.jsonc
40 lines (40 loc) · 1.55 KB
/
github-merge-flow.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// IMPORTANT: This file is read by the merge flow from main branch only.
{
"merge-flow-configurations": {
// Automate opening PRs to merge cli release/6.0.1xx to .4xx
"release/6.0.1xx":{
"MergeToBranch": "release/6.0.4xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge cli release/6.0.4xx to 8.0.1xx
"release/6.0.4xx":{
"MergeToBranch": "release/8.0.1xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge cli release/8.0.1xx to 8.0.3xx
"release/8.0.1xx":{
"MergeToBranch": "release/8.0.3xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge cli release/8.0.3xx to 8.0.4xx
"release/8.0.3xx":{
"MergeToBranch": "release/8.0.4xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge sdk repos from release/8.0.4xx to 9.0.1xx
"release/8.0.4xx":{
"MergeToBranch": "release/9.0.1xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge sdk repos from release/9.0.1xx to release/9.0.2xx
"release/9.0.1xx":{
"MergeToBranch": "release/9.0.2xx",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge sdk repos from release/9.0.2xx to main
"release/9.0.2xx":{
"MergeToBranch": "main",
"ExtraSwitches": "-QuietComments"
}
}
}