mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 02:28:54 +08:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
module.exports = {
|
|
dataSource: 'milestones',
|
|
ignoreIssuesWith: ['wontfix', 'duplicate'],
|
|
milestoneMatch: 'v{{tag_name}}',
|
|
template: {
|
|
issue: '- {{name}} [{{text}}]({{url}})',
|
|
changelogTitle: '',
|
|
release: '{{body}}'
|
|
},
|
|
groupBy: {
|
|
Enhancements: ['enhancement', 'internal'],
|
|
'Bug fixes': ['bug']
|
|
}
|
|
}
|