Aarunya AppsAarunya Apps

Every Monday at 9 AM Cron Expression 0 9 * * 1

Cron Expression

0 9 * * 1

What it means

Runs every Monday at 9:00 AM

Great for kicking off the work week — sending weekly summaries, resetting usage quotas, or generating Monday morning dashboards for your team.

Next 8 Scheduled Runs (UTC)

  1. 1.Mon, 29 Jun 2026 09:00:00 GMT
  2. 2.Mon, 06 Jul 2026 09:00:00 GMT
  3. 3.Mon, 13 Jul 2026 09:00:00 GMT
  4. 4.Mon, 20 Jul 2026 09:00:00 GMT
  5. 5.Mon, 27 Jul 2026 09:00:00 GMT
  6. 6.Mon, 03 Aug 2026 09:00:00 GMT
  7. 7.Mon, 10 Aug 2026 09:00:00 GMT
  8. 8.Mon, 17 Aug 2026 09:00:00 GMT

Platform Snippets

GitHub Actions

- cron: '0 9 * * 1'

Kubernetes CronJob

schedule: "0 9 * * 1"

AWS EventBridge

cron(0 9 ? * MON *)

AWS uses a 6-field format with year and requires either DOM or DOW to be ?.

systemd Timer

[Timer]
OnCalendar=Mon *-*-* 09:00:00
Persistent=true

Want to decode a different expression or test your own?

Test this expression interactively →

FAQ

What does the cron expression 0 9 * * 1 mean?

Runs every Monday at 9:00 AM. Great for kicking off the work week — sending weekly summaries, resetting usage quotas, or generating Monday morning dashboards for your team.

How do I use 0 9 * * 1 in GitHub Actions?

Add a schedule trigger under the "on" key in your workflow YAML: on: schedule: - cron: '0 9 * * 1'. This will run your workflow runs every monday at 9:00 am. Note that GitHub Actions uses UTC time.

Is the cron expression 0 9 * * 1 valid for Kubernetes CronJobs?

Yes. Set the schedule field in your CronJob spec to "0 9 * * 1". Kubernetes CronJobs use standard 5-field cron syntax and run in UTC by default unless you configure a timeZone field.