diff options
author | classabbyamp <dev@placeviolette.net> | 2022-04-14 23:30:06 +0000 |
---|---|---|
committer | Michael Aldridge <aldridge.mac@gmail.com> | 2022-04-15 00:49:46 +0000 |
commit | c16bf1e4feffc55c4698c18eeefe4b004091a407 (patch) | |
tree | 72224770659fa3eb2cfd6da4f12e7fe37f287654 | |
parent | 038ce32010e7148a02ea7f936df6c374150dbeba (diff) | |
download | void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar.gz void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar.bz2 void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar.lz void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar.xz void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.tar.zst void-packages-c16bf1e4feffc55c4698c18eeefe4b004091a407.zip |
.github/workflows/stale.yml: increase operations limit
By setting `ascending` to `true`, the most stale issues and PRs will be
caught first. By increasing the operations limit from the default (30)
to 250, more stale issues/PRs will be caught each run, increasing the
speed of the burndown.
-rw-r--r-- | .github/workflows/stale.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 91ac19e4f63..9dbb76cd2a3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -17,3 +17,5 @@ jobs: days-before-stale: 90 days-before-close: 14 exempt-all-assignees: true + ascending: true + operations-per-run: 250 |