From c67d75faaa432889caa4deafc7e58d4099fac2cd Mon Sep 17 00:00:00 2001 From: sudoforge Date: Mon, 22 Jul 2024 19:46:47 -0700 Subject: feat: increase operations per run for workflow: cron This change increases the number of operations that the workflow will perform from the default (30) to 1000, in order to allow for a large number of issues and pull requests to be processed. --- .github/workflows/cron.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows/cron.yml') diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 96274f16..94ce593c 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -13,6 +13,7 @@ jobs: steps: - uses: actions/stale@v9 with: + operations-per-run: 1000 stale-issue-label: lifecycle/stale stale-pr-label: lifecycle/stale days-before-stale: 90 -- cgit