You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: