fix(newsletter): use MON abbreviation in cron expression #72
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "exe-dev-bot/market:fix/cron-monday"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Cloudflare uses 1-7 (Sun-Sat) for day-of-week, not POSIX 0-6. The expression
0 12 * * 1fires on Sunday, not Monday.Changed to
0 12 * * MONusing three-letter abbreviation as recommended by Cloudflare docs to avoid ambiguity.Only the spec is affected on main — the
wrangler.jsoncandworker.tschanges will come with the newsletter delivery PR.