From 22e6f7b9acb5a56b9fbdfa71702df37bbb8cfb2f Mon Sep 17 00:00:00 2001 From: Nikolay Karadzhov Date: Wed, 22 Jul 2026 18:22:09 +0300 Subject: [PATCH] ci: fix release-drafter Maintenance category key The Maintenance category in all module release-drafter configs used the singular `label:` key with a list of values. release-drafter's schema expects `label` to be a single string and `labels` to be the array form, so config parsing failed Zod validation: categories[3].label: expected string, invalid_type Rename `label:` to `labels:` in bloom, entraid, json, search, and time-series configs so the release draft workflow parses again. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/release-drafter/bloom-config.yml | 2 +- .github/release-drafter/entraid-config.yml | 2 +- .github/release-drafter/json-config.yml | 2 +- .github/release-drafter/search-config.yml | 2 +- .github/release-drafter/time-series-config.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/release-drafter/bloom-config.yml b/.github/release-drafter/bloom-config.yml index 7734330b95c..05a39bd0618 100644 --- a/.github/release-drafter/bloom-config.yml +++ b/.github/release-drafter/bloom-config.yml @@ -28,7 +28,7 @@ categories: - 'bugfix' - 'bug' - title: '🧰 Maintenance' - label: + labels: - 'chore' - 'maintenance' - 'documentation' diff --git a/.github/release-drafter/entraid-config.yml b/.github/release-drafter/entraid-config.yml index d0ddd00773a..158b13b4d2d 100644 --- a/.github/release-drafter/entraid-config.yml +++ b/.github/release-drafter/entraid-config.yml @@ -28,7 +28,7 @@ categories: - 'bugfix' - 'bug' - title: '🧰 Maintenance' - label: + labels: - 'chore' - 'maintenance' - 'documentation' diff --git a/.github/release-drafter/json-config.yml b/.github/release-drafter/json-config.yml index ea259fc0d2d..c06ffbddc58 100644 --- a/.github/release-drafter/json-config.yml +++ b/.github/release-drafter/json-config.yml @@ -28,7 +28,7 @@ categories: - 'bugfix' - 'bug' - title: '🧰 Maintenance' - label: + labels: - 'chore' - 'maintenance' - 'documentation' diff --git a/.github/release-drafter/search-config.yml b/.github/release-drafter/search-config.yml index a78070aa59c..a5b9f8db22b 100644 --- a/.github/release-drafter/search-config.yml +++ b/.github/release-drafter/search-config.yml @@ -28,7 +28,7 @@ categories: - 'bugfix' - 'bug' - title: '🧰 Maintenance' - label: + labels: - 'chore' - 'maintenance' - 'documentation' diff --git a/.github/release-drafter/time-series-config.yml b/.github/release-drafter/time-series-config.yml index 29aee0cbc95..07900ea7849 100644 --- a/.github/release-drafter/time-series-config.yml +++ b/.github/release-drafter/time-series-config.yml @@ -28,7 +28,7 @@ categories: - 'bugfix' - 'bug' - title: '🧰 Maintenance' - label: + labels: - 'chore' - 'maintenance' - 'documentation'