1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-09 09:34:49 +09:00

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

This commit is contained in:
Farhad Alizada 2024-07-03 20:29:56 +02:00 committed by GitHub
parent 8abea3ae12
commit 4f96b8f541
Signed by: github
GPG key ID: B5690EEEBB952194

20
github-merge-flow.jsonc Normal file
View file

@ -0,0 +1,20 @@
// IMPORTANT: This file is read by the merge flow from main branch only.
{
"merge-flow-configurations": {
// Automate merging runtime release/6.0 branch into release/6.0-staging
"release/6.0":{
"MergeToBranch": "release/6.0-staging",
"ExtraSwitches": "-QuietComments"
},
// Automate merging runtime release/8.0 branch into release/8.0-staging
"release/8.0":{
"MergeToBranch": "release/8.0-staging",
"ExtraSwitches": "-QuietComments"
},
// Automate merging runtime release/8.0-rc branches back to release/8.0
"release/8.0-rc":{
"MergeToBranch": "release/8.0",
"ExtraSwitches": "-QuietComments"
}
}
}