Hi everyone,
I am trying to build a “Governance/Gatekeeper” workflow on my n8n Cloud instance.
The Goal: I need a central workflow that runs immediately whenever any other workflow in my instance is activated. The logic is: n8n User activates a workflow → Trigger fires → Check if workflow ID is in an “Approved” table → If not, auto-deactivate it and warn the user.
The Problem: I cannot find a way to trigger this event efficiently on n8n Cloud.
-
n8n Trigger Node: The
Workflow Activatedevent seems to only work for the specific workflow the node is inside, not globally for the whole instance. -
Polling (Schedule Node): I could poll the API every minute to check for active workflows, but this will burn through my execution limits rapidly (1,440 executions/day just to “watch” the system).
My Question: Is there any way on the current Cloud plans to detect a “Workflow Activated” event globally without polling?
If not, is there a “Global Event Trigger” planned for the roadmap? This would be massive for governance and security automations.
Thanks!