github-tools / github-release-notes

Node module to create a release or a changelog from a tag and uses issues or commits to creating the release notes.
https://github-tools.github.io/github-release-notes/
GNU General Public License v3.0
880 stars 325 forks source link

include-messages description error #314

Open ByWefox opened 2 years ago

ByWefox commented 2 years ago

Hi! In the include-messages options, it has this values: <merge, commits, all>, but when we use merge option, release notes doesn't work, because the description values is wrong. _init.js file has { name: 'includeMessages', type: 'list', message: 'Which type of commits do you want to include?', choices: [{ value: 'merges', name: 'Merges' }, { value: 'commits', name: 'Commits' }, { value: 'all', name: 'All' }], when: ({ dataSource }) => dataSource === 'commits' }, So the correct description should be: <merges,commits,all> It's a simple description error, but this will avoid wasting time