Skip to content

Commit ddb36f8

Browse files
ViktorHofergithub-actions
authored andcommitted
Add merge flow configurations for release branches
This file defines the merge flow configurations for different release branches, specifying the target branches and extra switches for merging.
1 parent 29cf33c commit ddb36f8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

github-merge-flow.jsonc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// IMPORTANT: This file is read by the merge flow from main branch only.
2+
{
3+
"merge-flow-configurations": {
4+
"release/8.0":{
5+
"MergeToBranch": "release/9.0",
6+
"ExtraSwitches": "-QuietComments"
7+
},
8+
"release/9.0":{
9+
"MergeToBranch": "release/10.0",
10+
"ExtraSwitches": "-QuietComments"
11+
},
12+
"release/10.0":{
13+
"MergeToBranch": "main",
14+
"ExtraSwitches": "-QuietComments"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)