From fee9d8533c6295a32012a030e7115725fb8de243 Mon Sep 17 00:00:00 2001 From: !verity Date: Fri, 13 Mar 2026 20:40:17 +0100 Subject: [PATCH] Update Release Drafter and CodeQL workflows: add release notes template and Java 21 setup --- .github/release-drafter.yml | 9 ++++++++- .github/workflows/codeql.yml | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 5479598..2b34aba 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,6 +1,13 @@ -# Config for release-drafter: how to categorize PRs in draft release notes +# Config for release-drafter v6: categorizes PRs in draft release notes # https://github.com/release-drafter/release-drafter +template: | + ## What's Changed + + $CHANGES + + **Full Changelog**: https://github.com/jakubbbdev/terminal-ui/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION + name-template: 'v$RESOLVED_VERSION' tag-template: 'v$RESOLVED_VERSION' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index caf7866..d6f6f60 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,6 +21,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + cache: gradle + - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: