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.
This commit is contained in:
Richard R 2026-06-07 06:14:19 -06:00
parent f135338d74
commit 74b16efa1b

View file

@ -2,7 +2,7 @@
"crons": [
{
"path": "/api/admin/tasks/tick",
"schedule": "0 * * * *"
"schedule": "0 0 * * *"
}
]
}