Merge branch 'develop' of ssh://git.v0id.ovh:5022/n3wt-innov/n3wt-school into develop

This commit is contained in:
N3WT DE COMPET
2025-05-04 14:32:29 +02:00

View File

@ -26,7 +26,7 @@ function formatCommitMessageFromBranchName(branchName) {
const type = match[1];
const idTicket = match[2];
const featureName = match[3];
return `${type}: ${featureName.replace(/[-_]/g, " ")} [${idTicket}]`;
return `${type}: ${featureName.replace(/[-_]/g, " ")} [#${idTicket}]`;
} else if (matchWithoutTicket) {
const type = matchWithoutTicket[1];
const featureName = matchWithoutTicket[2];