mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 18:18:53 +08:00
18 lines
346 B
JavaScript
18 lines
346 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"]
|
|
}
|
|
}
|