From 49284d6358a805e5f736ee4ee913e7fba21fa8b7 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Thu, 7 Jul 2022 12:15:10 -0500 Subject: [PATCH] .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 --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index b3ff79129f5..a78182c3252 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: -- 2.39.5