Onboard new inter-branch merge flow [Configuration] (#19936)

This commit is contained in:
Marc Paine 2024-07-03 12:42:07 -07:00 committed by GitHub
commit 5f9a19db33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
github-merge-flow.jsonc Normal file
View 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"
}
}
}