Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure Release Drafter for Semantic Versioning #525

Merged
merged 1 commit into from Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/release-drafter.yml
@@ -1,2 +1,19 @@
_extends: .github
tag-template: versions-maven-plugin-$NEXT_MINOR_VERSION
name-template: '$RESOLVED_VERSION'
tag-template: 'versions-maven-plugin-$RESOLVED_VERSION'
version-resolver:
major:
labels:
- major
minor:
labels:
- minor
- enhancement
patch:
labels:
- patch
default: patch
template: |
## Changes

$CHANGES
1 change: 1 addition & 0 deletions .github/workflows/release-drafter.yml
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master
workflow_dispatch:
jobs:
update_release_draft:
runs-on: ubuntu-latest
Expand Down