Cron for every 30 minutes
Quick answer
*/30 * * * * runs at minute 0 and minute 30 of every hour — twice per hour. Preview the next runs in TryDevSnip Cron Helper, all in your browser.
Cron expression: */30 * * * *
Half-hourly jobs suit report refreshes and moderate polling. Prefer this over every-minute schedules to keep load down.
Paste this cron expression into your crontab, or into the schedule field of whichever runner you use — the five-field syntax below is shared by cron, most CI schedulers, and container orchestrators. The sections that follow break the cron job down field by field and flag the timing edge cases that apply to this particular schedule.
What each field means here
A standard crontab line has five fields, read left to right. This is what each one is set to in*/30 * * * *:
| Field | Value | Allowed range | Meaning here |
|---|---|---|---|
| Minute | */30 | 0–59 | Every 30 minutes |
| Hour | * | 0–23 | Every hour |
| Day of month | * | 1–31 | Every day of the month |
| Month | * | 1–12 | Every month |
| Day of week | * | 0–6 (Sunday = 0) | Every day of the week |
Before you ship this schedule
- Cron runs in the scheduler’s timezone, not the viewer’s. GitHub Actions always runs schedules in UTC; Kubernetes CronJob accepts a timeZone field on newer API versions; a plain crontab follows the host.
- Some engines (Quartz, and several managed cloud schedulers) prepend a seconds field, making the same schedule a six-field expression. Pasting a five-field string into a six-field slot silently changes when it fires.
Using it outside a crontab
GitHub Actions and Kubernetes CronJob both accept this same five-field syntax, so the expression carries over unchanged — what changes is the clock it runs against:
| Where | Same expression? | Timezone |
|---|---|---|
| crontab | Yes | Host timezone |
| GitHub Actions | Yes | Always UTC |
| Kubernetes CronJob | Yes | UTC unless timeZone is set |
More schedules: weekly jobs · monthly jobs · every 10 minutes · every 2 hours · twice a day · daily at noon · every 5 minutes · every 15 minutes · hourly · every 6 hours · every 12 hours · midnight · weekdays 9am · daily 2am · yearly · full cheat sheet
Frequently asked questions
What does */30 * * * * mean?
*/30 * * * * runs at minute 0 and minute 30 of every hour — twice per hour. Preview the next runs in TryDevSnip Cron Helper, all in your browser.
Are next run times in my local timezone?
Cron Helper previews next runs in your browser’s local timezone. Many production schedulers use UTC — always compare before changing live jobs.
Is my cron expression uploaded?
No. Explanation and next-run math run client-side on TryDevSnip. Expressions are not uploaded to our servers for processing.