From c78e4747903d4240c4421caef8489579fabfdaae Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 23 Oct 2020 04:03:02 -0700 Subject: [PATCH] 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. --- .github/workflows/check-certificates.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-certificates.yml b/.github/workflows/check-certificates.yml index 51cd5c3a..af4a4c53 100644 --- a/.github/workflows/check-certificates.yml +++ b/.github/workflows/check-certificates.yml @@ -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