From 3c7b38d587b3fa69db5fecc3c1e40e4340dc226a Mon Sep 17 00:00:00 2001 From: Tyler Cooper Date: Thu, 7 Aug 2025 15:25:32 -0500 Subject: [PATCH] Update on_schedule.js --- app/blocks/triggers/on_schedule.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/blocks/triggers/on_schedule.js b/app/blocks/triggers/on_schedule.js index 0d4ef52..7505054 100644 --- a/app/blocks/triggers/on_schedule.js +++ b/app/blocks/triggers/on_schedule.js @@ -4,7 +4,7 @@ export default { bytecodeKey: "onSchedule", name: "Schedule", colour: 30, - description: "A schedule to run the action, from every minute to once a year.", + description: "Create a time-based trigger that runs actions automatically at specific times, dates, or intervals (e.g., 'Every weekday at 9 AM', 'Every 15 minutes', or 'On the 1st of every month').", connections: { mode: "statement", @@ -22,21 +22,25 @@ export default { inputs: { MONTH: { + description: "Which months to run the schedule (e.g., 'All months', 'January only', or 'Every 3 months starting in March').", check: "cron_month", block: "all_months", }, DAY: { + description: "Which days to run the schedule - either specific days of the month (1-31) or days of the week (Monday, Tuesday, etc.).", check: "cron_day", block: "all_days" }, HOUR: { + description: "Which hours to run the schedule (0-23 in 24-hour format, e.g., '14' for 2 PM or 'Every 4 hours').", check: "cron_hour", block: "all_hours" }, MINUTE: { + description: "Which minutes to run the schedule (0-59, e.g., 'At 15 minutes past the hour' or 'Every 30 minutes').", check: "cron_minute", block: { type: "one_minute",