Extending the platform
Trigger Plugins
Trigger plugins allow you to create custom event-based workflow triggers that respond to external events or scheduled intervals.
Adding a trigger
Triggers are used to run a workflow based on an event. They are defined by inheriting from BaseTriggerDefinition
and implementing the required methods.
Triggers are similar to nodes.
The code that runs the trigger needs to be defined by creating an asyncio task to deal with the specific event and calling register_event
when something happens
The final step is to return the trigger and event in the triggers
method of your plugin.