(title)
| 89 | } |
| 90 | |
| 91 | function cleanupPRTitle(title) { |
| 92 | if (title.startsWith('[Docs] ')) { |
| 93 | return title.replace('[Docs] ', '') |
| 94 | } |
| 95 | |
| 96 | return title |
| 97 | } |
| 98 | |
| 99 | const buildChangelog = (sections, authors) => { |
| 100 | let text = '' |
no test coverage detected