diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-22 19:46:47 -0700 |
---|---|---|
committer | sudoforge <no-reply@sudoforge.com> | 2024-07-22 19:46:47 -0700 |
commit | c67d75faaa432889caa4deafc7e58d4099fac2cd (patch) | |
tree | 2e48849b142742748223e94652788647d7c36baa /.github/workflows/cron.yml | |
parent | eef62798e9d83733d34662f633d7c2d13797a53b (diff) | |
download | git-bug-c67d75faaa432889caa4deafc7e58d4099fac2cd.tar.gz |
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.
Diffstat (limited to '.github/workflows/cron.yml')
-rw-r--r-- | .github/workflows/cron.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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 |