Onboard new inter-branch merge flow [Configuration]
This commit is contained in:
parent
248d81d8a0
commit
f3d395f09d
1 changed files with 25 additions and 0 deletions
25
github-merge-flow.jsonc
Normal file
25
github-merge-flow.jsonc
Normal file
|
@ -0,0 +1,25 @@
|
|||
// 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"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue