Rename to branchName

This commit is contained in:
Michael B. Gale
2026-03-25 13:35:02 +00:00
parent 0abe92ed20
commit 0da3139813
+2 -2
View File
@@ -62,9 +62,9 @@ export function computeBackportBranches(
if (considerBackports) {
for (let i = majorVersionNumber - 1; i > 0; i--) {
const branch_name = `releases/v${i}`;
const branchName = `releases/v${i}`;
if (i >= oldestSupportedMajorVersion) {
backportTargetBranches.push(branch_name);
backportTargetBranches.push(branchName);
}
}
}