From 2f8b6d6cb6bef0275b14005e070de30a21f48983 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Fri, 28 Oct 2022 13:24:33 -0500 Subject: [PATCH] .github/workflows: update `days-before-pr-close` Currently, the stale bot closes PRs 90 days after they are marked stale since it counts "marking a PR stale" as activity. We really want the PRs to close after a total of 90 days, or 30 days after they are marked stale. Changing `days-before-prs-close` to 30 will fix this. Signed-off-by: Laura Flores --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dd4728d2506..2de5de3f177 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -39,7 +39,7 @@ jobs: days-before-pr-stale: 60 # Idle number of days before closing stale PRs (exempts Issues) - days-before-pr-close: 90 + days-before-pr-close: 30 # Label to apply on staled PRs stale-pr-label: 'stale'