edsger 0.21.8 → 0.21.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -175,8 +175,8 @@ export async function createBranchPullRequest(config, devBranchName, featureName
|
|
|
175
175
|
pullRequestNumber: existingPR.number,
|
|
176
176
|
};
|
|
177
177
|
}
|
|
178
|
-
// Generate PR title and body (truncate to keep under 72 chars)
|
|
179
|
-
const truncatedName = truncateText(featureName, MAX_FEATURE_NAME_LENGTH);
|
|
178
|
+
// Generate PR title and body (truncate to keep under 72 chars, lowercase)
|
|
179
|
+
const truncatedName = truncateText(featureName.toLowerCase(), MAX_FEATURE_NAME_LENGTH);
|
|
180
180
|
const title = `${PR_TITLE_PREFIX}${truncatedName}`;
|
|
181
181
|
const body = `## Branch Implementation
|
|
182
182
|
|