-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix #1385 Add release drafter * Use proper tag template
- Loading branch information
Showing
2 changed files
with
65 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,46 @@ | ||
|
||
name-template: '$RESOLVED_VERSION SBT Native Packager π¦' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
categories: | ||
- title: 'π New Features' | ||
label: | ||
- 'feature' | ||
- 'feature request' | ||
- title: 'π³ Docker' | ||
label: 'docker' | ||
- title: 'π¦ GraalVM' | ||
label: 'graalvm' | ||
- title: 'π¦ Universal (zip, tar, gz)' | ||
label: 'universal' | ||
- title: 'π¦ Debian' | ||
label: 'debian' | ||
- title: 'π¦ Jlink' | ||
label: 'jlink' | ||
- title: 'π¦ JDK Packager' | ||
label: 'jdkpackager' | ||
- title: 'π¦ DMG (MacOSX)' | ||
label: 'macosx' | ||
- title: 'π¦ RPM' | ||
label: 'rpm' | ||
- title: 'π¦ Windows' | ||
label: 'window' | ||
- title: 'π Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
change-template: '- $TITLE (#$NUMBER)' | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch | ||
template: | | ||
## In This Release | ||
$CHANGES |
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,19 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
pull_request: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- $default-branch | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
- uses: release-drafter/release-drafter@v5 | ||
with: | ||
config-name: release-drafter.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |