Skip to content

Commit 7c1e034

Browse files
committed
adding comment on cron
1 parent d337860 commit 7c1e034

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
workflow_dispatch:
55
schedule:
66
- cron: "0 0 1-7 3,6,9,12 *"
7-
7+
# at 0:00, on the first seven days of the month, in march, june, september and december
8+
# in cron, it is not possible to say "first monday of the month", so the cron is selecting
9+
# the first week, and the action is only running if the day is a monday using the
10+
# is-it-monday step
11+
812
env:
913
CARGO_TERM_COLOR: always
1014

0 commit comments

Comments
 (0)