-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# release-drafter automatically creates a draft release for you each time you complete a PR in the main branch. | ||
# It uses GitHub labels to categorize changes (See categories) and draft the release. | ||
# release-drafter also generates a version for your release based on GitHub labels. You can add a label of 'major', | ||
# 'minor' or 'patch' to determine which number in the version to increment. | ||
# You may need to add these labels yourself. | ||
# See https://github.com/release-drafter/release-drafter | ||
name-template: "$RESOLVED_VERSION" | ||
tag-template: "$RESOLVED_VERSION" | ||
change-template: "- $TITLE by @$AUTHOR (#$NUMBER)" | ||
no-changes-template: "- No changes" | ||
categories: | ||
- title: "📦 Dependencies" | ||
labels: | ||
- "dependencies" | ||
- title: "📚 Documentation" | ||
labels: | ||
- "documentation" | ||
- title: "🚀 New Features" | ||
labels: | ||
- "enhancement" | ||
- title: "🐛 Bug Fixes" | ||
labels: | ||
- "bug" | ||
- title: "🧰 Maintenance" | ||
labels: | ||
- "maintenance" | ||
version-resolver: | ||
major: | ||
labels: | ||
- "major" | ||
minor: | ||
labels: | ||
- "minor" | ||
patch: | ||
labels: | ||
- "patch" | ||
default: patch | ||
template: | | ||
$CHANGES | ||
## 👨🏼💻 Contributors | ||
$CONTRIBUTORS | ||
autolabeler: | ||
- label: "documentation" | ||
files: | ||
- "**/*.md" | ||
- label: "enhancement" | ||
files: | ||
- "internal/**/*" | ||
- label: "maintenance" | ||
files: | ||
- ".github/**/*" | ||
- "vendor/**/*" | ||
- "testdata/**/*" |