From af12166595c898a8756a0d673cfee734b7e1fe60 Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Tue, 30 May 2023 10:17:01 +0200 Subject: [PATCH] Decreased frequency - Increased Operations Changes made - Decreased the frequency to ~4 hours during working hours - Increased the Actions by a lot to process all issues - Changed the ordering to Ascening to address the oldest issues first. --- .github/workflows/stale.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c00c1533b7..10459b0b75 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,7 +1,7 @@ name: 'Close stale issues and PRs' on: schedule: - - cron: '*/10 * * * *' + - cron: '0 9-17/4 * * *' jobs: stale: @@ -12,7 +12,8 @@ jobs: days-before-pr-close: -1 days-before-stale: 365 days-before-close: 14 - operations-per-run: 75 + operations-per-run: 3000 + ascending: true exempt-issue-labels: 'Status: Triage,Developer Environment :computer:,Status: On Backlog,PR: Community Contribution :crown:,PR: Printer Definitions :factory:,PR: Translations :books:' stale-issue-label: 'Status: Stale :hourglass:' labels-to-add-when-unstale: 'Status: Triage'