Skip to content
Snippets Groups Projects
Unverified Commit 3b651408 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

fix: readd missing config properties (#13716)

parent 22c40fa7
No related branches found
Tags 31.39.1
No related merge requests found
...@@ -57,6 +57,11 @@ async function getBaseBranchConfig( ...@@ -57,6 +57,11 @@ async function getBaseBranchConfig(
baseBranchConfig.baseBranches = config.baseBranches; baseBranchConfig.baseBranches = config.baseBranches;
} }
if (config.baseBranches.length > 1) {
baseBranchConfig.branchPrefix += `${baseBranch}-`;
baseBranchConfig.hasBaseBranches = true;
}
baseBranchConfig = mergeChildConfig(baseBranchConfig, { baseBranch }); baseBranchConfig = mergeChildConfig(baseBranchConfig, { baseBranch });
return baseBranchConfig; return baseBranchConfig;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment