From 1a57ff5df8c8e3ca81189ec01dafb652419ea211 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Sun, 19 Jun 2022 17:53:03 +0100 Subject: [PATCH] stale.yml: Change time for issues to be stale (#8114) * stale.yml: Change time for issues to be stale * match the suggestions --- .github/workflows/stale.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c99731fe3d..8acda7bbd8 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -16,14 +16,21 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} # Number of days of inactivity before an issue or PR is considered stale - days-before-stale: 15 + days-before-pr-stale: 15 + + days-before-issue-stale: 45 + # Number of days of inactivity before a stale issue or PR is closed - days-before-close: 30 + days-before-pr-close: 30 + + days-before-issue-close: 90 # Issues or PRs with these labels will never be considered stale exempt-pr-labels: stalebot ignore + exempt-issue-labels: stalebot ignore,help wanted + # Label to use when marking an issue or PR as stale stale-pr-label: waiting