mirror of
https://github.com/ceph/ceph
synced 2025-02-23 19:17:37 +00:00
.github/workflows: process PRs in ascending order
The Ceph repo has many PRs and we cannot process all the PRs with the default "operations-per-run" value (30). At the time of writting the bot processes 408 every day and there are around 938 PRs. Even the job informs us that not enough PRs might have been processed and encouraged us to increase "operations-per-run" if possible. However it might expose us to Github's API rate limit. So let's operate with the oldest PRs first, this should close a bunch of PRs already. If not enough we can try to increase "operations-per-run". Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
f6a70c0e8e
commit
1a8d201037
4
.github/workflows/stale.yml
vendored
4
.github/workflows/stale.yml
vendored
@ -52,3 +52,7 @@ jobs:
|
||||
|
||||
# Max number of operations per run
|
||||
operations-per-run: 30
|
||||
|
||||
# Change the order used to fetch the issues and pull requests from GitHub
|
||||
# So we now start with the oldest PRs and work our way backwards
|
||||
ascending: true
|
||||
|
Loading…
Reference in New Issue
Block a user