From c67d75faaa432889caa4deafc7e58d4099fac2cd Mon Sep 17 00:00:00 2001 From: sudoforge Date: Mon, 22 Jul 2024 19:46:47 -0700 Subject: [PATCH] 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(+) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 96274f16d7f56ff957ecaf09a36e16427f3f87dd..94ce593c7367787c1a210247ecc7eea1509927c5 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