This topic was automatically generated from Slack. You can find the original thread here.
Cron expression for 11:40pm daily only on Monday, Tuesday, Wednesday, Thursday, Friday
This topic was automatically generated from Slack. You can find the original thread here.
Cron expression for 11:40pm daily only on Monday, Tuesday, Wednesday, Thursday, Friday
To create a cron expression that runs at 11:40pm daily only on Monday, Tuesday, Wednesday, Thursday, and Friday, you can use the following cron expression: 40 23 ** ** 1-5
This cron expression breaks down as follows: - 40
- The minute (40th minute of the hour) - 23
- The hour (11pm in 24-hour time) - **
- The day of the month (every day of the month) - **
- The month (every month) - 1-5
- The day of the week (Monday=1, Tuesday=2, Wednesday=3, Thursday=4, Friday=5) In Pipedream, you can set this cron expression in a scheduled trigger for your workflow.
Cron expression for every hour between 6am-6pm everyday of the week
The cron expression to run a job every hour between 6am and 6pm every day of the week is: 0 6-18 ** ** **
This expression breaks down as follows: - 0
- Run at the 0th minute - 6-18
- Run every hour from 6am (06:00) to 6pm (18:00) - **
- Every day of the month - **
- Every month - **
- Every day of the week Please note that cron expressions are based on the server’s timezone, which is typically UTC. Adjust the hours if you need the schedule to run in a different timezone.