From: Laura Flores Date: Thu, 7 Jul 2022 17:15:10 +0000 (-0500) Subject: .github/workflows: run the stale bot every hour X-Git-Tag: v18.0.0~544^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=49284d6358a805e5f736ee4ee913e7fba21fa8b7;p=ceph.git .github/workflows: run the stale bot every hour Currently, the stale bot runs once a day at 1:30 UTC. This will only process a few PRs per day, which is not enough to handle the volume of PRs that come into the Ceph repository. Running the bot once every hour with a limit of 30 operations will keep within the rate limit, but it will also process more PRs per day. Followup to 1a8d2010375fb485ed73f08f7de9ea1738826d91. Signed-off-by: Laura Flores --- diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index b3ff79129f577..a78182c325243 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -3,7 +3,7 @@ name: 'Close stale issues and PRs' on: schedule: - - cron: '30 1 * * *' + - cron: '0 * * * *' jobs: stale: