Revert "wprkflows/bot: increase frequency to every 5 minutes"

This partially reverts commit 1197fe48da.

GitHub just doesn't schedule these narrow intervals. 10 minutes is
alright in practice.
This commit is contained in:
Wolfgang Walther 2025-11-04 19:45:02 +01:00
parent 22ee270895
commit 74d6ba3ab4
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1
2 changed files with 3 additions and 3 deletions

View file

@ -7,9 +7,9 @@ name: Bot
on:
schedule:
# Run every 5m
# Run every 10m
# i.e., at each of the listed minutes, every hour
- cron: '02,07,12,17,22,27,32,37,42,47,52,57 * * * *'
- cron: '05,15,25,35,45,55 * * * *'
workflow_call:
inputs:
headBranch:

View file

@ -587,7 +587,7 @@ module.exports = async ({ github, context, core, dry }) => {
state: 'open',
sort: 'created',
direction: 'asc',
per_page: 50,
per_page: 100,
after: cursor,
})