From a4ea5ba10d5f2c3eabe0d108d09de5632d1ae445 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 2 Jun 2025 09:41:06 -0500 Subject: [PATCH] chore: Relax Stalebot (#5498) --- .github/workflows/stale.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c1443c1d4..9a5c50881 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -16,12 +16,13 @@ jobs: with: stale-issue-label: 'stale' exempt-issue-labels: 'pinned,security,early-stages,bug: confirmed,feedback,task' - stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' - days-before-issue-stale: 30 - days-before-issue-close: 5 + stale-issue-message: 'This issue has been automatically marked as stale because it has been open 90 days with no activity.' + days-before-issue-stale: 90 + # This stops an issue from ever getting closed automatically. + days-before-issue-close: -1 stale-pr-label: 'stale' - stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.' - days-before-pr-stale: 45 + stale-pr-message: 'This PR has been automatically marked as stale because it has been open 90 days with no activity.' + days-before-pr-stale: 90 # This stops a PR from ever getting closed automatically. days-before-pr-close: -1 # If an issue/PR has a milestone, it's exempt from being marked as stale.