forked from dotnet/efcore
-
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) · 925 Bytes
/
github-merge-flow.jsonc
File metadata and controls
25 lines (25 loc) · 925 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 opening PRs to merge release/8.0 branch into release/8.0-staging
"release/8.0":{
"MergeToBranch": "release/8.0-staging",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge release/8.0 to release/9.0
"release/8.0":{
"MergeToBranch": "release/9.0",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge release/9.0 branch into release/9.0-staging
"release/9.0":{
"MergeToBranch": "release/9.0-staging",
"ExtraSwitches": "-QuietComments"
},
// Automate opening PRs to merge release/9.0 to main
"release/9.0":{
"MergeToBranch": "main",
"ExtraSwitches": "-QuietComments"
}
}
}