-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π· add a release drafter configuration (#12)
- Loading branch information
1 parent
03e3965
commit 60f3024
Showing
2 changed files
with
77 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,54 @@ | ||
name-template: "MQT $RESOLVED_VERSION Release" | ||
tag-template: "v$RESOLVED_VERSION" | ||
categories: | ||
- title: "π Features and Enhancements" | ||
labels: | ||
- "feature" | ||
- "enhancement" | ||
- "usability" | ||
- title: "π Bug Fixes" | ||
labels: | ||
- "bug" | ||
- "fix" | ||
- title: "π Documentation" | ||
labels: | ||
- "documentation" | ||
- title: "π€ CI" | ||
labels: | ||
- "continuous integration" | ||
- title: "π¦ Packaging" | ||
labels: | ||
- "packaging" | ||
- title: "π§Ή Code Quality" | ||
labels: | ||
- "code quality" | ||
- title: "β¬οΈ Dependencies" | ||
collapse-after: 5 | ||
labels: | ||
- "dependencies" | ||
- "submodules" | ||
- "github_actions" | ||
change-template: "- $TITLE @$AUTHOR (#$NUMBER)" | ||
change-title-escapes: '\<*_&' | ||
version-resolver: | ||
major: | ||
labels: | ||
- "major" | ||
minor: | ||
labels: | ||
- "minor" | ||
patch: | ||
labels: | ||
- "patch" | ||
default: patch | ||
autolabeler: | ||
- label: "dependencies" | ||
title: | ||
- "/update pre-commit hooks/i" | ||
|
||
template: | | ||
## π What Changed | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION |
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,23 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request_target: | ||
types: [opened, reopened, synchronize] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
update_release_draft: | ||
name: Run | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: release-drafter/release-drafter@v6 | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} |