Skip to content

Commit ac04f1c

Browse files
committed
fix(ng-dev): correctly set next branch name in renovate config
Related issue: angular/angular@b67351a
1 parent dfe1386 commit ac04f1c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ng-dev/release/publish/actions/shared/branch-off-next-branch.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ export abstract class BranchOffNextBranchBaseAction extends CutNpmNextPrerelease
145145
...this.getAspectLockFiles(),
146146
];
147147

148-
const renovateConfigPath = await updateRenovateConfig(this.projectDir, nextBranch);
148+
const renovateConfigPath = await updateRenovateConfig(
149+
this.projectDir,
150+
`${newNextVersion.major}.${newNextVersion.minor}.x`,
151+
);
149152
if (renovateConfigPath) {
150153
filesToCommit.push(renovateConfigPath);
151154
}

0 commit comments

Comments
 (0)