From 2bc4a23d8cf081b7069ac811ea44d7dc7d5e8b9f Mon Sep 17 00:00:00 2001 From: Nomi Harris Date: Fri, 9 Feb 2024 17:52:37 -0800 Subject: [PATCH] Correct number of days in 2 years (730, not 630) I wondered why issue #530 was closed as not having seen any activity in 2 years when it hadn't been 2 years. This is why: this workflow had > days-before-issue-stale: 630 when it should be 730. --- .github/workflows/stale-issues-and-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale-issues-and-prs.yml b/.github/workflows/stale-issues-and-prs.yml index 72ce6f9a..390c53b7 100644 --- a/.github/workflows/stale-issues-and-prs.yml +++ b/.github/workflows/stale-issues-and-prs.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/stale@v7 with: - days-before-issue-stale: 630 + days-before-issue-stale: 730 days-before-issue-close: 60 close-issue-label: 'autoclosed-unfixed' close-issue-reason: 'not_planned'