mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
fix: readd missing config properties (#13716)
This commit is contained in:
parent
22c40fa7d4
commit
3b651408e7
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue