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.
This commit is contained in:
per1234 2020-10-23 04:03:02 -07:00
parent 30136b0ef2
commit c78e474790

View File

@ -3,7 +3,7 @@ name: Check for issues with signing certificates
on:
schedule:
# run every 10 hours
- cron: "* */10 * * *"
- cron: "0 */10 * * *"
# workflow_dispatch event allows the workflow to be triggered manually.
# This could be used to run an immediate check after updating certificate secrets.
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch