forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-merge-flow.jsonc
More file actions
25 lines (25 loc) · 969 Bytes
/
github-merge-flow.jsonc
File metadata and controls
25 lines (25 loc) · 969 Bytes
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
// 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/9.0 branch back to release/9.0-staging
"release/9.0":{
"MergeToBranch": "release/9.0-staging",
"ExtraSwitches": "-QuietComments"
},
// Automate merging runtime release/10.0-rc1 branch into release/10.0
"release/10.0-rc1":{
"MergeToBranch": "release/10.0",
"ExtraSwitches": "-QuietComments"
}
}
}