|
1 | | -name-template: 'v$NEXT_PATCH_VERSION' |
2 | | -tag-template: 'v$NEXT_PATCH_VERSION' |
3 | | -change-template: '- $TITLE (#$NUMBER)' |
4 | | -no-changes-template: 'No user-facing changes.' |
| 1 | +name-template: 'v$RESOLVED_VERSION' |
| 2 | +tag-template: 'v$RESOLVED_VERSION' |
5 | 3 |
|
6 | 4 | categories: |
7 | 5 | - title: '🚀 Features' |
8 | 6 | labels: ['feat','feature','enhancement'] |
9 | 7 | - title: '🐛 Fixes' |
10 | | - labels: ['fix','bug','bugfix'] |
11 | | - - title: '🧰 Chores' |
12 | | - labels: ['chore','build','deps'] |
13 | | - - title: '📚 Docs' |
| 8 | + labels: ['fix','bug'] |
| 9 | + - title: '🧰 Maintenance' |
| 10 | + labels: ['chore','build','ci','refactor'] |
| 11 | + - title: '📝 Docs' |
14 | 12 | labels: ['docs'] |
15 | | - - title: '🧪 CI' |
16 | | - labels: ['ci'] |
| 13 | + - title: '✅ Tests' |
| 14 | + labels: ['test'] |
| 15 | + |
| 16 | +change-template: '- $TITLE (#$NUMBER) by @$AUTHOR' |
| 17 | +no-changes-template: 'No changes.' |
17 | 18 |
|
18 | 19 | version-resolver: |
19 | 20 | major: |
20 | | - labels: ['major'] |
| 21 | + labels: ['major','breaking','semver:major'] |
21 | 22 | minor: |
22 | | - labels: ['minor','feat'] |
| 23 | + labels: ['minor','feat','enhancement','semver:minor'] |
23 | 24 | patch: |
24 | | - labels: ['patch','fix','chore','docs','ci','build','deps'] |
| 25 | + labels: ['patch','fix','chore','ci','docs','refactor','test','semver:patch'] |
25 | 26 | default: patch |
| 27 | + |
| 28 | +template: | |
| 29 | + ## What’s Changed |
| 30 | + $CHANGES |
0 commit comments