mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
123d53c265
`branch` is not a valid configuration option for release-drafter, see https://github.com/release-drafter/release-drafter#configuration-options There's is a similar [`references` option][1], but it does nothing when using GitHub Actions (it's only there for GitHub apps). There's also `commitish`, but it defaults to the target/branch the GitHub Action job runs on, so we don't need to set that. [1]: https://github.com/release-drafter/release-drafter#references
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name-template: '$NEXT_PATCH_VERSION'
|
|
tag-template: '$NEXT_PATCH_VERSION'
|
|
categories:
|
|
- title: '🚨 **Breaking Changes**'
|
|
labels:
|
|
- 'Breaking Change'
|
|
- title: '🚀 Features'
|
|
labels:
|
|
- 'Type: Enhancement'
|
|
- 'feature' # deprecated, new PRs shouldn't have this
|
|
- title: '🐛 Bug Fixes'
|
|
labels:
|
|
- 'Type: Bug / Error'
|
|
- 'fix' # deprecated, new PRs shouldn't have this
|
|
- title: '🧰 Maintenance'
|
|
labels:
|
|
- 'Type: Other'
|
|
- 'chore' # deprecated, new PRs shouldn't have this
|
|
- title: '⚡️ Performance'
|
|
labels:
|
|
- 'Type: Performance'
|
|
- title: '📚 Documentation'
|
|
labels:
|
|
- 'Area: Documentation'
|
|
change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
|
|
sort-by: title
|
|
sort-direction: ascending
|
|
exclude-labels:
|
|
- 'Skip changelog'
|
|
no-changes-template: 'This release contains minor changes and bugfixes.'
|
|
template: |
|
|
# Release Notes
|
|
|
|
$CHANGES
|
|
|
|
🎉 **Thanks to all contributors helping with this release!** 🎉
|