From 74b16efa1b83beae45c4e429751b4b5b69ef8c52 Mon Sep 17 00:00:00 2001 From: Richard R Date: Sun, 7 Jun 2026 06:14:19 -0600 Subject: [PATCH] ci(config): update scheduled task cron to run daily at midnight Change cron schedule for /api/admin/tasks/tick from hourly to once daily at midnight to reduce task frequency and align with updated operational requirements. --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 334538e..805b91f 100644 --- a/vercel.json +++ b/vercel.json @@ -2,7 +2,7 @@ "crons": [ { "path": "/api/admin/tasks/tick", - "schedule": "0 * * * *" + "schedule": "0 0 * * *" } ] }