From b19365f0845d70f0a0bf6d0901a360746bb4dce2 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Fri, 25 Oct 2024 11:48:23 -0600 Subject: [PATCH] Increase stale issue timeout --- .github/workflows/issue-stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-stale.yml b/.github/workflows/issue-stale.yml index 3d9f6558d..01258baa7 100644 --- a/.github/workflows/issue-stale.yml +++ b/.github/workflows/issue-stale.yml @@ -10,11 +10,11 @@ jobs: steps: - uses: actions/stale@v9 with: - stale-issue-message: "This issue is stale because it has been open for 90 days with no activity. If there is no activity in the next 7 days, the issue will be closed." + stale-issue-message: "This issue is stale because it has been open for 180 days with no activity. If there is no activity in the next 7 days, the issue will be closed." close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale. Please open a new issue if you believe you are encountering a related problem." ascending: false operations-per-run: 300 - days-before-issue-stale: 90 + days-before-issue-stale: 180 days-before-issue-close: 7 days-before-pr-stale: -1 days-before-pr-close: -1