.github/release-drafter.yml
---
# file-version: 1.0
template: |
## Whatβs Changed
$CHANGES
## π¨πΌβπ» Contributors
$CONTRIBUTORS
change-template: "- $TITLE by @$AUTHOR (#$NUMBER)"
change-title-escapes: '\<*_&#@`' # You can add # and @ to disable mentions, and add ` to disable code blocks.
no-changes-template: "- No changes"
name-template: "$RESOLVED_VERSION"
tag-template: "$RESOLVED_VERSION"
version-template: "$MAJOR.$MINOR.$PATCH"
exclude-labels:
- "duplicate"
- "question"
- "invalid"
- "wontfix"
version-resolver:
major:
labels:
- "bc break"
- "removed"
minor:
labels:
- "deprecated"
- "security"
patch:
labels:
- "bug"
- "dependencies"
- "enhancement"
- "maintenance"
- "documentation"
default: patch
autolabeler:
- label: "documentation"
files:
- "*.md"
categories:
- title: "**π₯ Breaking:**"
labels:
- "bc break"
- title: "**π° Enhancements:**"
labels:
- "enhancement"
- title: "**π Bugs:**"
labels:
- "bug"
- title: "**π Deprecated:**"
labels:
- "deprecated"
- title: "**π Removed:**"
labels:
- "removed"
- title: "**π‘ Security:**"
labels:
- "security"
- title: "**πΈ Dependencies:**"
labels:
- "dependencies"
- title: "**π§Ή Maintenance:**"
labels:
- "maintenance"
- title: "**π¦ Documentation:**"
labels:
- "documentation"
# other Labels
#- title: "**π¦ new Useragents:**"
# labels:
# - "new useragents"
commitish: master
target_commitish: master
filter-by-commitish: true
include-pre-releases: true