Skip to content

Commit

Permalink
Onboard new inter-branch merge flow [Configuration] (dotnet#103805)
Browse files Browse the repository at this point in the history
  • Loading branch information
f-alizada committed Jul 3, 2024
1 parent 8abea3a commit 4f96b8f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions github-merge-flow.jsonc
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit 4f96b8f

Please sign in to comment.