I´ve set up a workflow with two input trigger: Telegram Message, Scheduler. However, the scheduler is active, the workflow is active but the workflow is never executed. If I run it manually or via the telegram trigger it works as expected.
Hello @Mik3e
I guess n8n does not support multiple concurrent triggers in the same workflow, because it would not be able to correctly manage which one to activate in the runtime
You can create two distinct workflows:
One with Telegram Trigger
One with Schedule Trigger
In both, add an Execute Workflow node that calls a third workflow called, for example, Common Handler, where you put all the shared logic.
So you get the effect of “two alternative triggers” that activate the same logical block
So now I´ve split up the input trigger in two workflows (one for telegram and one for the scheduler). Telegram works fine but the Scheduler is still not executed.
The workflow is set to “active”
The timing is set to once every 12 hours
I´ve already removed the scheduler node and added a new one.
To me it looks more like a bug then a configuration.
Here is how the trigger workflow now looks like: