From dbb869d0199014a3172f6c1ed806734d8e6ce47f Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Sun, 17 May 2026 22:52:58 -0700 Subject: [PATCH] Increase inactivity thresholds for stale issues Updated stale issue and close messages to reflect new inactivity thresholds. --- .github/workflows/closeinactive.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/closeinactive.yml b/.github/workflows/closeinactive.yml index 56cf04b6..70ee7833 100644 --- a/.github/workflows/closeinactive.yml +++ b/.github/workflows/closeinactive.yml @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f #v10.2.0 with: - days-before-issue-stale: 14 - days-before-issue-close: 14 + days-before-issue-stale: 30 + days-before-issue-close: 30 stale-issue-label: "stale" - stale-issue-message: "This issue is stale because it has been open for 2 weeks with no activity." - close-issue-message: "This issue was closed because it has been inactive for 2 weeks since being marked as stale." + stale-issue-message: "This issue is stale because it has been open without activity for 30 days. Please remove the stale label if this was an error." + close-issue-message: "This issue was closed because it has been inactive for 30 days since being marked as stale." days-before-pr-stale: -1 days-before-pr-close: -1 repo-token: ${{ secrets.GITHUB_TOKEN }}