28 lines
669 B
YAML
28 lines
669 B
YAML
# Config for release-drafter v6: categorizes PRs in draft release notes
|
|
# https://github.com/release-drafter/release-drafter
|
|
|
|
template: |
|
|
## What's Changed
|
|
|
|
$CHANGES
|
|
|
|
**Full Changelog**: https://github.com/jakubbbdev/terminal-ui/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
|
|
|
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
|