Skip to content

Commit c78e474

Browse files
committed
Fix certificate check CI workflow's crontab
An error in the crontab configuration resulted in the `schedule` event triggered workflow running every 6-9 minutes (the minimum interval GitHub Actions provides) for the duration of every tenth hour. The updated crontab causes the workflow to run once every 10 hours, as intended.
1 parent 30136b0 commit c78e474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-certificates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check for issues with signing certificates
33
on:
44
schedule:
55
# run every 10 hours
6-
- cron: "* */10 * * *"
6+
- cron: "0 */10 * * *"
77
# workflow_dispatch event allows the workflow to be triggered manually.
88
# This could be used to run an immediate check after updating certificate secrets.
99
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch

0 commit comments

Comments
 (0)