How to schedule a workflow to run on specific days, such as every day except Sundays

I know how to schedule a workflow to run evey day at 10 am for exemple.

Is it possible to schedule a workflow to run every day at 10 am on specific days, such as every day except Sundays?

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@fxholl , use cron expression 0 10 * * 1-6:

4 Likes

Just to mix things up a bit you could also use a Weekly trigger interval and select the days and time.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.