-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathgithub-merge-flow.jsonc
More file actions
38 lines (38 loc) · 1.18 KB
/
github-merge-flow.jsonc
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
// IMPORTANT: This file is read by the merge flow from main branch only.
{
"merge-flow-configurations": {
"release/10.0.1xx":{
"MergeToBranch": "release/10.0.2xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": [
"eng/Version.Details.xml",
"eng/Version.Details.props",
"eng/common/*",
"NuGet.config",
"global.json"
]
},
"release/10.0.2xx":{
"MergeToBranch": "release/10.0.3xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": [
"eng/Version.Details.xml",
"eng/Version.Details.props",
"eng/common/*",
"NuGet.config",
"global.json"
]
},
"release/10.0.3xx":{
"MergeToBranch": "main",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": [
"eng/Version.Details.xml",
"eng/Version.Details.props",
"eng/common/*",
"NuGet.config",
"global.json"
]
}
}
}