From 07538e70486127847bbce9fe8434ce1210f2d661 Mon Sep 17 00:00:00 2001 From: Anthony James Padavano Date: Sun, 19 Jul 2026 05:32:04 -0400 Subject: [PATCH] =?UTF-8?q?fix(stale):=20never=20auto-close=20=E2=80=94=20?= =?UTF-8?q?label=20only=20(days-before-close:=20-1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This universe never closes/dismisses/deletes an issue or PR — every request is preserved and evolved. Set the stale close window to -1 so the workflow labels but never closes; the 60-day informational `stale` label is unchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/stale.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 9529ea0..0645f51 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -17,14 +17,12 @@ jobs: with: stale-issue-message: > This issue has been automatically marked as stale because it has not - had recent activity. It will be closed in 14 days if no further - activity occurs. + had recent activity. It will remain open — this label is informational only; this project never auto-closes. stale-pr-message: > This PR has been automatically marked as stale because it has not - had recent activity. It will be closed in 14 days if no further - activity occurs. + had recent activity. It will remain open — this label is informational only; this project never auto-closes. days-before-stale: 60 - days-before-close: 14 + days-before-close: -1 exempt-issue-labels: 'pinned,evergreen,omega,blocked' exempt-pr-labels: 'pinned,evergreen,work-in-progress' stale-issue-label: 'stale'