Cron Expression: At every minute
Cron Expression
* * * * *At every minute
Click the expression to select it, then copy.
Quick Answer
The cron expression for "at every minute" is `* * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | * | Every minute |
| Hour | * | Every hour |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →Health checks
- →Log rotation
- →Real-time sync jobs
- →Ping monitoring
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "* * * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '* * * * *'Linux crontab
* * * * * /path/to/your-command.sh