release-notes-generator
release-notes-generator copied to clipboard
[Question]hide commit's link ?
Is it possible to generate changelog without commit's link ?
I tried to set linkReferences to false but it doesn't work ?
any solution ?
thx.
also wondering this, @Madrity did you find a solution?
Hi, I made a custom text generation, see below
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"linkCompare": false,
"linkReferences": false,
"writerOpts": {
"commitPartial": "* {{this.subject}}"
}
}
]
Hope it will be helpful ;)
This is useful, but your commitPartial
kills multiline commit messages, joining them to one line.