-
Notifications
You must be signed in to change notification settings - Fork 0
/
.grenrc.js
32 lines (32 loc) · 869 Bytes
/
.grenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
dataSource: 'prs',
prefix: '',
ignoreLabels: ['duplicate', 'help wanted', 'invalid', 'question', 'wontfix'],
ignoreIssuesWith: [
'duplicate',
'help wanted',
'invalid',
'question',
'wontfix'
],
onlyMilestones: false,
changelogFilename: 'CHANGELOG.md',
template: {
issue: '- {{name}} [{{text}}]({{url}})',
group: '\n### {{heading}}\n'
},
// https://github.com/nuxt/nuxt.js/releases
// https://gitmoji.carloscuesta.me
groupBy: {
'✨ New Features:': ['enhancement'],
'🐛 Bug Fixes:': ['bug'],
'📖 Documentation:': ['documentation'],
'💅 Refactors:': ['refactor'],
'♻️ Tests:': ['test'],
'🚀 Performance:': ['performance'],
'⚓ Dependency upgrades:': ['dependencies'],
'🏡 Chore:': ['chore'],
'💄 Style:': ['style'],
'🎩 Hack': ['hack']
}
}