This commit is contained in:
Cole Davis
2025-09-12 14:52:58 -04:00
committed by Cole D
parent 726d5808b5
commit 4991c0c947

View File

@@ -97,6 +97,7 @@ export async function setupBranch(
// - No underscores // - No underscores
// - Max 50 chars (to allow for prefixes) // - Max 50 chars (to allow for prefixes)
const branchName = `${branchPrefix}${entityType}-${entityNumber}-${timestamp}`; const branchName = `${branchPrefix}${entityType}-${entityNumber}-${timestamp}`;
console.log(`Provided branch name template: ${branchNameTemplate}`);
const newBranch = branchName.toLowerCase().substring(0, 50); const newBranch = branchName.toLowerCase().substring(0, 50);
try { try {