fix:refs #6130 code

This commit is contained in:
Pablo Natek 2024-04-05 14:53:06 +02:00
parent 021280c53c
commit 11dea43da2
1 changed files with 1 additions and 1 deletions

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);
}