6130-commitLint #1792

Merged
pablone merged 31 commits from 6130-commitLint into dev 2024-04-12 11:02:00 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 11dea43da2 - Show all commits

View File

@ -25,7 +25,7 @@ if (branchName) {
const splitedMsg = msg.split(':');
if (splitedMsg.length > 1) {
const finalMsg = splitedMsg[0] + splitedMsg.slice(1).join(':');
const finalMsg = splitedMsg[0] + ':' + referenceTag + splitedMsg.slice(1).join(':');
console.log('finalMsg: ', finalMsg);
fs.writeFileSync(msgPath, finalMsg);
}