From 9619ddf975a9d294da0ef8ea4619e970d4c76476 Mon Sep 17 00:00:00 2001 From: GHX5T-SOL <200635707+GHX5T-SOL@users.noreply.github.com> Date: Sun, 17 May 2026 04:35:28 +0200 Subject: [PATCH] fix(ci): drop missing stale-claim label exemption Signed-off-by: GHX5T-SOL <200635707+GHX5T-SOL@users.noreply.github.com> --- .github/workflows/unassign-stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unassign-stale.yml b/.github/workflows/unassign-stale.yml index 803156c..b519b44 100644 --- a/.github/workflows/unassign-stale.yml +++ b/.github/workflows/unassign-stale.yml @@ -51,7 +51,7 @@ jobs: for (const issue of stale) { if (issue.pull_request) continue; const labels = (issue.labels || []).map(l => typeof l === 'string' ? l : l.name); - if (labels.includes('pinned') || labels.includes('long-running')) continue; + if (labels.includes('pinned')) continue; const assignees = (issue.assignees || []).map(a => a.login); if (assignees.length === 0) continue;