From 2d9a96d388f470bbd4ccfe275a1eab2b53872d91 Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Thu, 28 May 2026 23:17:22 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20invalid=20stale.yml=20=E2=80=94=20p?= =?UTF-8?q?ass=20exempt=20labels=20as=20strings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit actions/stale (v10) requires `with:` inputs to be scalar strings, but exempt-issue-labels / exempt-pr-labels were YAML sequences, which GitHub rejects with "A sequence was not expected". Convert both to the comma-separated string form the action expects. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/stale.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c786e95..c7bb7c0 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,21 +14,5 @@ jobs: close-issue-label: wontfix close-pr-label: wontfix days-before-close: -1 - exempt-issue-labels: - - pinned - - security - - Bug - - Serious Bug - - Minor bug - - Black hole bug - - Special case Bug - - Upstream bug - exempt-pr-labels: - - pinned - - security - - Bug - - Serious Bug - - Minor bug - - Black hole bug - - Special case Bug - - Upstream bug + exempt-issue-labels: 'pinned,security,Bug,Serious Bug,Minor bug,Black hole bug,Special case Bug,Upstream bug' + exempt-pr-labels: 'pinned,security,Bug,Serious Bug,Minor bug,Black hole bug,Special case Bug,Upstream bug'