21 lines
519 B
YAML
21 lines
519 B
YAML
# Config for release-drafter: how to categorize PRs in draft release notes
|
|
# https://github.com/release-drafter/release-drafter
|
|
|
|
name-template: 'v$RESOLVED_VERSION'
|
|
tag-template: 'v$RESOLVED_VERSION'
|
|
|
|
categories:
|
|
- title: '🚀 Features'
|
|
labels: [feature, enhancement]
|
|
- title: '🐛 Bug Fixes'
|
|
labels: [bug, fix]
|
|
- title: '📚 Documentation'
|
|
labels: [documentation]
|
|
- title: '⬆️ Dependencies'
|
|
labels: [dependencies]
|
|
- title: 'Other'
|
|
labels: ['*']
|
|
|
|
exclude-labels:
|
|
- skip-changelog
|