From 9f6279095d163bea2599dd5447d093acca51b0cf Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Mon, 10 Aug 2026 18:15:25 +0200 Subject: [PATCH] ci: stop the stale bot from closing relevant issues days-before-stale was 7, so any discussion thread got nagged after a week. exempt-issue-labels pointed at a 'Postpone' label that did not exist in the repo, so nothing was ever exempt, and PRs had no exemption list at all. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DrPGBtLDkdnYXQv4u3r7bG --- .github/workflows/stale-issues.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index bfc30653..676bcbe6 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -24,8 +24,10 @@ jobs: stale-issue-label: 'stale' - days-before-stale: 7 + days-before-stale: 60 days-before-close: 7 - exempt-issue-labels: 'Postpone' \ No newline at end of file + exempt-issue-labels: 'Postpone, next-version' + + exempt-pr-labels: 'Postpone, next-version' \ No newline at end of file