Skip to content

Commit

Permalink
Update lib/workers/repository/updates/branch-name.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Sep 27, 2023
1 parent 1a47f8f commit ed3d00c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/workers/repository/updates/branch-name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export function generateBranchName(update: RenovateConfig): void {
if (update.updateType === 'minor' && update.separateMultipleMinor) {
const newMinor = String(update.newMinor);
update.branchName = update.branchName.replace('.x', `.${newMinor}.x`);
logger.info(update.branchName);
}
update.branchName = cleanBranchName(
update.branchName,
Expand Down

0 comments on commit ed3d00c

Please sign in to comment.