From b4e028b835d55b445e803b13d32633811ef175bc Mon Sep 17 00:00:00 2001 From: Zach R Date: Sun, 3 Nov 2024 17:01:48 -0800 Subject: [PATCH] feat: send checkin reminder at 3PM on friday as well --- src/tasks/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tasks/index.ts b/src/tasks/index.ts index ca9d77b..8027a2e 100644 --- a/src/tasks/index.ts +++ b/src/tasks/index.ts @@ -67,6 +67,7 @@ export function scheduleTasks() { // Slack is silly and can only handle 5 items in the overflow menu scheduleCronTask(createTaskFunc(promptCheckinMessage), '0 19 * * FRI') + scheduleCronTask(createTaskFunc(promptCheckinMessage), '0 15 * * FRI') tasks['Sync Sheet'] = scheduleTask(updateSheet, 60 * 5, isProd, 0) tasks['Sync Slack Members'] = scheduleTask(syncSlackMembers, 60 * 60, isProd, 0) // can be run from the admin members page tasks['Update profile Certs'] = scheduleTask(updateProfileCerts, 60 * 60 * 24, isProd, 5 * 60)