mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-15 16:46:32 +00:00
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:
parent
30136b0ef2
commit
c78e474790
2
.github/workflows/check-certificates.yml
vendored
2
.github/workflows/check-certificates.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user