This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Heid
committed
Aug 15, 2022
1 parent
b5861af
commit c862232
Showing
3 changed files
with
112 additions
and
9 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,12 @@ | ||
<!-- Please describe your pull request here. --> | ||
|
||
- [ ] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch! | ||
- [ ] Ensure that the pull request title represents the desired changelog entry | ||
- [ ] Please describe what you did | ||
- [ ] Link to relevant issues in GitHub | ||
- [ ] Link to relevant pull requests, esp. upstream and downstream changes | ||
- [ ] Ensure you have provided tests - that demonstrates feature works or fixes the issue | ||
|
||
<!-- | ||
Put an `x` into the [ ] to show you have filled the information. | ||
--> |
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,81 @@ | ||
name-template: 'v$RESOLVED_VERSION 🌈' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
|
||
categories: | ||
- title: 💥 Breaking changes | ||
labels: | ||
- breaking | ||
- title: 🚨 Removed | ||
labels: | ||
- removed | ||
- title: 🎉 Major features and improvements | ||
labels: | ||
- major-enhancement | ||
- major-rfe | ||
- title: 🐛 Major bug fixes | ||
labels: | ||
- major-bug | ||
- title: ⚠️ Deprecated | ||
labels: | ||
- deprecated | ||
- title: 🚀 New features and improvements | ||
labels: | ||
- enhancement | ||
- feature | ||
- rfe | ||
- title: 🐛 Bug fixes | ||
labels: | ||
- bug | ||
- fix | ||
- bugfix | ||
- regression | ||
- regression-fix | ||
- title: 🌐 Localization and translation | ||
labels: | ||
- localization | ||
- title: 👷 Changes for developers | ||
labels: | ||
- developer | ||
- title: 📝 Documentation updates | ||
labels: | ||
- documentation | ||
- title: 👻 Maintenance | ||
labels: | ||
- chore | ||
- internal | ||
- maintenance | ||
- title: 🚦 Tests | ||
labels: | ||
- test | ||
- tests | ||
- title: ✍ Other changes | ||
- title: 📦 Dependency updates | ||
labels: | ||
- dependencies | ||
collapse-after: 15 | ||
|
||
exclude-labels: | ||
- reverted | ||
- no-changelog | ||
- skip-changelog | ||
- invalid | ||
|
||
template: | | ||
## Changes | ||
$CHANGES | ||
autolabeler: | ||
- label: 'documentation' | ||
files: | ||
- '*.md' | ||
branch: | ||
- '/docs{0,1}\/.+/' | ||
- label: 'bug' | ||
branch: | ||
- '/fix\/.+/' | ||
title: | ||
- '/fix/i' | ||
- label: 'enhancement' | ||
branch: | ||
- '/feature\/.+/' |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ jobs: | |
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
|
@@ -16,11 +16,21 @@ jobs: | |
server-password: OSSRH_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg-passphrase: GPG_PASSPHRASE | ||
- run: | | ||
git config user.email "[email protected]" | ||
git config user.name "Daniel Heid" | ||
- run: mvn -B release:prepare release:perform | ||
env: | ||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
- run: | | ||
git config user.email "[email protected]" | ||
git config user.name "Daniel Heid" | ||
- run: mvn -B release:prepare release:perform | ||
env: | ||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
- id: version | ||
run: | | ||
VERSION=$( mvn -B help:evaluate -Dexpression=project.version -q -DforceStdout ) | ||
echo "::set-output name=version::$VERSION" | ||
- uses: release-drafter/release-drafter@v5 | ||
with: | ||
version: ${{ steps.version.outputs.version }} | ||
publish: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |