~/cron-builder

Cron: first of every month at midnight

The cron expression `0 0 1 * *` fires at 00:00 on the 1st day of every month. The `@monthly` macro is the equivalent in most runners.

# expression

0 0 1 * *

Means: At 00:00 on day 1 of every month — 12 fires per year.

→ Open in cron builder (pre-filled)

# common use cases

# next fires (sample)

# pitfalls

# other patterns