Devtools.supstudio.in

Tools/Cron

Cron for every day at 4am fifteen

15 4 * * *

At 04:15 AM, every day

Open in builder

What this schedule does

15 4 * * * runs daily at 15 minutes past 4am. A quarter-hour offset is enough to let upstream :00 jobs finish before you read their output.

Next 5 runs (UTC)

Times below are computed for UTC. Open the builder to preview another timezone.

  1. Fri, 21 Aug 2026, 04:15 UTC
  2. Sat, 22 Aug 2026, 04:15 UTC
  3. Sun, 23 Aug 2026, 04:15 UTC
  4. Mon, 24 Aug 2026, 04:15 UTC
  5. Tue, 25 Aug 2026, 04:15 UTC

Copy-paste snippets

GitHub Actions

UTC only. Quote the expression so YAML keeps the stars.

on:
  schedule:
    - cron: '15 4 * * *'

Kubernetes

CronJob spec.schedule. Kubernetes uses the timezone of the kube-controller-manager unless you set .spec.timeZone.

apiVersion: batch/v1
kind: CronJob
metadata:
  name: job
spec:
  schedule: "15 4 * * *"
  jobTemplate:
    spec:
      template:
        spec:
          restartPolicy: OnFailure
          containers:
            - name: job
              image: busybox
              args: ["echo", "run"]

AWS EventBridge

Six fields: minutes hours day-of-month month day-of-week year. Use ? in either day-of-month or day-of-week.

cron(15 4 * * ? *)

Quartz

Quartz is seconds-first (6 or 7 fields). Day-of-week names are MON, TUE, … and ? is required in one of the day fields.

0 15 4 * * *

Vercel Cron

{
  "crons": [
    {
      "path": "/api/cron",
      "schedule": "15 4 * * *"
    }
  ]
}

crontab

15 4 * * * /usr/local/bin/job

node-cron

import cron from 'node-cron';

cron.schedule('15 4 * * *', () => {
  // job
});

Spring @Scheduled

Spring uses 6 fields by default (seconds first) unless you set spring.task.scheduling.cron.expression.

@Scheduled(cron = "0 15 4 * * *")
public void run() {
    // job
}

Related schedules

Platform guides