diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 975a035..1196d2d 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -4,6 +4,9 @@ template: | # What's Changed $CHANGES + + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION + categories: - title: 'New Features' labels: @@ -14,7 +17,7 @@ categories: - 'bug' - 'fix' - title: 'Maintenance' - label: + labels: - 'ci' - 'chore' - 'perf' @@ -27,7 +30,6 @@ categories: label: 'dependencies' exclude-labels: - 'skip-changelog' -change-template: '* $TITLE (#$NUMBER)' version-resolver: major: labels: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa0d47f..8610204 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,11 +37,11 @@ jobs: if: github.event.inputs.version == null run: echo "RELEASE_VERSION=${{ steps.candidate-version.outputs.result }}" >> $GITHUB_ENV - - name: Set up JDK 8 + - name: Set up JDK 21 uses: actions/setup-java@v4 with: distribution: 'zulu' - java-version: 8 + java-version: 21 - name: Checkout uses: actions/checkout@v4