From cab1ceec2332b4d73b0fefe84668b38c90d1fe99 Mon Sep 17 00:00:00 2001 From: Mateo Date: Wed, 19 Aug 2026 09:58:58 +0200 Subject: [PATCH] ci(release): add a catch-all category to the release notes template Unlabeled PRs matched no category, so GitHub dropped them and the generated notes came out empty. --- .github/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/release.yml b/.github/release.yml index 8f7f47c9..a1bb1844 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -22,3 +22,8 @@ changelog: - title: Miscellaneous labels: - "type: misc" + # EVERYTHING ELSE + # Without this catch-all, unlabeled PRs match no category and GitHub + # drops them, which leaves the generated release notes empty. + - title: Other changes + labels: ["*"]