0 9 * * 1-5
๐Ÿ—“Weekdays (Mon-Fri) at 09:00

Field editor

Minute0
Hour9
Day of Month*
Month*
Day of Week1-5
โ€“

Quick presets

Next 10 scheduled runs

14/29/2026, 9:00:00 AMin 14h
24/30/2026, 9:00:00 AMin 2d
35/1/2026, 9:00:00 AMin 3d
45/4/2026, 9:00:00 AMin 6d
55/5/2026, 9:00:00 AMin 7d
65/6/2026, 9:00:00 AMin 8d
75/7/2026, 9:00:00 AMin 9d
85/8/2026, 9:00:00 AMin 10d
95/11/2026, 9:00:00 AMin 13d
105/12/2026, 9:00:00 AMin 14d
systemd Timer
[Unit]
Description=My scheduled job

[Timer]
OnCalendar=0 9 * * 1-5
Persistent=true

[Install]
WantedBy=timers.target
GitHub Actions
on:
  schedule:
    - cron: '0 9 * * 1-5'
Kubernetes CronJob
apiVersion: batch/v1
kind: CronJob
metadata:
  name: my-cronjob
spec:
  schedule: "0 9 * * 1-5"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: job
            image: my-image:latest
          restartPolicy: OnFailure