From d88630848a1c7b228b24f264ba477348a7498abd Mon Sep 17 00:00:00 2001 From: Orlix Date: Tue, 5 Jul 2022 04:31:57 +0300 Subject: [PATCH] Making stale bot a bit more active (#17115) - reducing the stale ime to 30 days - adding operations-per-run to 1000 so we can clean a bit more Signed-off-by: OrlinVasilev Co-authored-by: OrlinVasilev --- .github/workflows/housekeeping-stale-issues-prs.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/housekeeping-stale-issues-prs.yaml b/.github/workflows/housekeeping-stale-issues-prs.yaml index bada0891b..c78805d23 100644 --- a/.github/workflows/housekeeping-stale-issues-prs.yaml +++ b/.github/workflows/housekeeping-stale-issues-prs.yaml @@ -13,11 +13,13 @@ jobs: stale-pr-message: 'This PR is being marked stale due to a period of inactivty. If this PR is still relevant, please comment or remove the stale label. Otherwise, this PR will close in 30 days.' close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity. If this issue is still relevant, please re-open a new issue.' close-pr-message: 'This PR was closed because it has been stalled for 30 days with no activity. If this PR is still relevant, please re-open a new PR against main.' - days-before-issue-stale: 60 - days-before-pr-stale: 60 + days-before-issue-stale: 30 + days-before-pr-stale: 30 days-before-issue-close: 30 days-before-pr-close: 30 # Don't add stale label to PRs / issues with milestones "upcoming" attached. exempt-milestones: "upcoming" # Don't add stale label to PRs / issues with this label exempt-issue-labels: "never-stale" + # Make it 1000 to clean up a bit then wen can lower it + operations-per-run: 1000