Skip to content

Commit

Permalink
String
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Mar 18, 2024
1 parent ac1cd26 commit cd315d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/workers/repository/updates/branch-name.ts
Expand Up @@ -47,8 +47,8 @@ function cleanBranchName(

export function generateBranchName(update: RenovateConfig): void {
// Check whether to use a group name
const newMajor = `${update.newMajor}`;
const newMinor = `${update.newMinor}`;
const newMajor = String(update.newMajor);
const newMinor = String(update.newMinor);
if (update.groupName) {
update.groupName = template.compile(update.groupName, update);
logger.trace('Using group branchName template');
Expand Down

0 comments on commit cd315d8

Please sign in to comment.