release-notes-generator icon indicating copy to clipboard operation
release-notes-generator copied to clipboard

[Question]hide commit's link ?

Open GuillaumeLhomme opened this issue 4 years ago • 7 comments

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.

GuillaumeLhomme avatar Sep 18 '20 13:09 GuillaumeLhomme

also wondering this, @Madrity did you find a solution?

nyan-left avatar Nov 03 '21 14:11 nyan-left

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

GuillaumeLhomme avatar Nov 15 '21 11:11 GuillaumeLhomme

This is useful, but your commitPartial kills multiline commit messages, joining them to one line.

softshape avatar Jul 06 '22 16:07 softshape