From dd1b1c0f6c2977adf963aab8b2fb0e8684654aca Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Tue, 13 Aug 2024 15:40:32 -0400 Subject: [PATCH] Temporarily increase issue limit for GitHub action --- .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 29bbf4be..307bcf30 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,7 +1,7 @@ name: Close stale issues and PRs on: schedule: - - cron: '30 * * * *' + - cron: '45 * * * *' jobs: stale: @@ -9,7 +9,8 @@ jobs: steps: - uses: actions/stale@v9.0.0 with: - days-before-stale: 28 + days-before-stale: 21 days-before-close: 0 + operations-per-run: 300 exempt-issue-labels: do-not-close exempt-pr-labels: do-not-close \ No newline at end of file