Schedule trigger not being triggered

I have a workflow with 2 triggers: A webhook and a Schedule Trigger.

Issue:
The workflow isn’t triggered by the Schedule Trigger. The Webhook is working just fine.

The Webhook is configured with Response: responseNode

The workflow triggers:

Information on your n8n setup

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

Almost the same here, I have a simple schedule node which should fire every 2nd day but looking at the execution history it never did even weeks after, ( yes the workflow is active, and yes all other workflows work just fine )

``
{
“nodes”: [
{
“parameters”: {
“rule”: {
“interval”: [
{
“daysInterval”: 2,
“triggerAtHour”: 8
}
]
}
},
“type”: “n8n-nodes-base.scheduleTrigger”,
“typeVersion”: 1.2,
“position”: [
-1088,
-240
],
“id”: “dbb0dd57-0fe8-4a9f-96ac-ed7d69b6ae5b”,
“name”: “Schedule Trigger”
}
],
“connections”: {
“Schedule Trigger”: {
“main”: [

]
}
},
“pinData”: {},
“meta”: {
“instanceId”: “32ffd9c817d6c8888*******888**8*88*528d54d7a106”
}
}
```

Same here, all other workflows (also scheduled ones) run just fine. I even tried creating a new workflow and copying the workflow steps. Same result: not being triggered.

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