Triggering workflows to not run over weekends

I have a workflow trigger that triggers on the 1st of each month. Is there a way to add a safety onto this so that it can only trigger on a work day (e.g. Mon-Fri) as 1st Sept will be on Sunday and do not want it to trigger.

Hi @R_Fleming,

Not an expert on workflows, but I guess you can set something like this:

and then create a javascript logic in your first square to identify what day of the week it is. If it is Saturday or Sunday, the workflow ends, otherwise it runs. As the workflow is scheduled to run on days 1,2 and 3, then the logic would have to account also for circumstances when day 1 is already a working day, so that ends without doing nothing on days 2 and 3.