Skip to content

Commit

Permalink
fix: readd missing config properties (#13716)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice authored Jan 21, 2022
1 parent 22c40fa commit 3b65140
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/workers/repository/process/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ async function getBaseBranchConfig(
baseBranchConfig.baseBranches = config.baseBranches;
}

if (config.baseBranches.length > 1) {
baseBranchConfig.branchPrefix += `${baseBranch}-`;
baseBranchConfig.hasBaseBranches = true;
}

baseBranchConfig = mergeChildConfig(baseBranchConfig, { baseBranch });

return baseBranchConfig;
Expand Down

0 comments on commit 3b65140

Please sign in to comment.