-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathgithub-merge-flow.jsonc
More file actions
65 lines (65 loc) · 3.46 KB
/
Copy pathgithub-merge-flow.jsonc
File metadata and controls
65 lines (65 loc) · 3.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// IMPORTANT: This file is read by the merge flow from main branch only.
{
"merge-flow-configurations": {
// Automate opening PRs to merge cli release/8.0.1xx to 8.0.4xx
"release/8.0.1xx":{
"MergeToBranch": "release/8.0.4xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Versions.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from release/8.0.4xx to 9.0.1xx
"release/8.0.4xx":{
"MergeToBranch": "release/9.0.1xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Versions.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from release/9.0.1xx to release/9.0.3xx
"release/9.0.1xx":{
"MergeToBranch": "release/9.0.3xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Versions.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from release/9.0.3xx to release/10.0.1xx
"release/9.0.3xx":{
"MergeToBranch": "release/10.0.1xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Version.Details.props;eng/common/*;src/SourceBuild/*"
},
// Automate opening PRs to merge sdk repos from release/10.0.1xx to release/10.0.3xx
"release/10.0.1xx":{
"MergeToBranch": "release/10.0.3xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Version.Details.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from release/10.0.3xx to release/10.0.4xx
"release/10.0.3xx":{
"MergeToBranch": "release/10.0.4xx",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Version.Details.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from release/10.0.4xx to main
"release/10.0.4xx":{
"MergeToBranch": "main",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Version.Details.props;eng/common/*"
},
// Automate opening PRs to merge sdk repos from main to release/dnup.
// Unlike the release-band flows above, release/dnup has NO darc/Maestro
// subscription, so this auto-merge is its only path to dependency and
// toolset updates. Resetting the dep/toolset files would freeze dnup on
// stale Arcade + eng/common; since dnup is the same 11.0.1xx band as main,
// we let those flow and reset only CODEOWNERS (kept minimal to avoid review
// pings on these automated PRs).
"main":{
"MergeToBranch": "release/dnup",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "CODEOWNERS"
},
// Automate opening PRs to merge sdk repos from dnup to release/dnup
"dnup":{
"MergeToBranch": "release/dnup",
"ExtraSwitches": "-QuietComments",
"ResetToTargetPaths": "global.json;NuGet.config;eng/Version.Details.xml;eng/Versions.props;eng/common/*"
}
}
}