From b1076bd0b220f19b776f6099057772fb93dd93fd Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Sun, 22 Oct 2023 12:00:20 +0200 Subject: [PATCH] Pause stale bot on weekends and reduce ops per run back to 30 --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index aa21f4db85..d03ba0245c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,7 +1,7 @@ name: "Close stale issues and pull requests" on: schedule: - - cron: "30 1 * * *" + - cron: "30 1 * * 1-5" permissions: issues: write @@ -33,5 +33,5 @@ jobs: days-before-close: 7 stale-issue-label: "status:stale" stale-pr-label: "status:stale" - operations-per-run: 60 + operations-per-run: 30 enable-statistics: true