From 91dbe607916ecad62d4d15e0003d24cf037393e7 Mon Sep 17 00:00:00 2001 From: lan496 Date: Sun, 6 Sep 2026 16:53:14 +0900 Subject: [PATCH 1/2] chore: rename release.yml to release.yaml Match the .yaml extension used by every workflow in .github/workflows. GitHub reads the release notes config from either .github/release.yml or .github/release.yaml, so the rename alone changes no behaviour. Co-Authored-By: Claude --- .github/{release.yml => release.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{release.yml => release.yaml} (100%) diff --git a/.github/release.yml b/.github/release.yaml similarity index 100% rename from .github/release.yml rename to .github/release.yaml From 3bf48a5a5bfeca9e111ebb11ce569469f20e43d5 Mon Sep 17 00:00:00 2001 From: lan496 Date: Sun, 6 Sep 2026 16:54:23 +0900 Subject: [PATCH 2/2] feat: categorise CI and dependency PRs in release notes Renovate now opens PRs labelled `renovate`, which previously landed in "Other changes" alongside everything uncategorised. Give them their own section, and add a CI section for workflow and tooling changes. Both categories sit above the catch-all, since GitHub assigns each PR to the first matching category. The `ci` and `renovate` labels were created in the repository to match. Co-Authored-By: Claude --- .github/release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/release.yaml b/.github/release.yaml index ecab90a..d8d7601 100644 --- a/.github/release.yaml +++ b/.github/release.yaml @@ -12,6 +12,12 @@ changelog: - title: Documentation labels: - documentation + - title: CI + labels: + - ci + - title: Dependency updates + labels: + - renovate - title: Other changes labels: - "*"