Schedule Trigger node run at wrong timing

Describe the problem/error/question

Schedule Trigger node run at wrong timing

My timezone setting:

What is the error message (if any)?

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

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

Hi there!

Can you describe what time you want the trigger to run?

For this case is 10am, 19 Nov 2025 (Kuala Lumpur time)

Hi @hartamas ,
To get the desired behavior, you need to tell the scheduler to ignore one of those fields by using a wildcard character (*). Here’s how to set it up based on your goal:

1. To Run a Workflow ONLY on a Specific Date (November 19th):

If you want the workflow to run only on November 19th at 10:00 AM, regardless of what day of the week it is, you should use a wildcard for the “Day of Week” field.

  • Correct Expression: 00 00 10 19 11 *

2. To Run a Workflow ONLY on Wednesdays in November:

If your goal is to have the workflow run every Wednesday in November at 10:00 AM, you should use a wildcard for the “Day of Month” field.

  • Correct Expression: 00 00 10 * 11 3

By making this change, your workflow will trigger at the exact time you intend.

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

1 Like

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