Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
actions-scheduled-workflow-example: fix cron spec
The prior cron spec would trigger 4 times a day, at 05:00, 05:30, 17:00, and 17:30.  The `*/30` is "any minute divisible by thirty" which is twice per hour.

So fix the spec to use `30` in place of `*/30` to match the description.
  • Loading branch information
philpennock authored Apr 20, 2021
commit 4ce4ee2e201672e65f4c404143c44263bab343b4
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ This example triggers the workflow every day at 5:30 and 17:30 UTC:
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '*/30 5,17 * * *'
- cron: '30 5,17 * * *'

```