From c7d7cd389124da9116bbd6609a6125dc4139a37b Mon Sep 17 00:00:00 2001 From: Adam Perkowski Date: Thu, 31 Oct 2024 19:10:45 +0100 Subject: [PATCH] fix: github release notes not working (#884) so apparently you can't mix stuff like `labels` and `label` in YAML (f YAML) if i try to create a release now (yes i can), it just won't generate the notes. this will fix it --- .github/release.yml | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index ada1b3e6..8668f1c3 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -1,23 +1,35 @@ changelog: categories: - title: '🚀 Features' - label: 'enhancement' + labels: + - 'enhancement' - title: '🐛 Bug Fixes' - label: 'bug' + labels: + - 'bug' - title: '⚙️ Refactoring' - label: 'refactor' + labels: + - 'refactor' - title: '🧩 UI/UX' - label: 'UI/UX' + labels: + - 'UI/UX' - title: '📚 Documentation' - label: 'documentation' + labels: + - 'documentation' - title: '🔒 Security' - label: 'security' + labels: + - 'security' - title: '🧰 GitHub Actions' - label: 'github_actions' + labels: + - 'github_actions' - title: '🦀 Rust' - label: 'rust' + labels: + - 'rust' - title: '📃 Scripting' - label: 'script' + labels: + - 'script' + - title: 'Other Changes' + labels: + - "*" exclude: labels: - - 'skip-changelog' \ No newline at end of file + - 'skip-changelog'