The cron expression for every 30 minutes
*/30 * * * *
The minute step */30 resolves to 0 and 30 — two firings per hour, 48 per day. Equivalent to 0,30 * * * * (the explicit list form).
See the dedicated guide for the full breakdown: Cron every minute.
Paste it into the editor above to see the next runs on a calendar.