Manual
Run a workflow directly from the editor by filling out the input form and clicking Run. This is useful during development and for one-off executions. The form is auto-generated from theinputs section of your config.yaml. Required fields must be filled; optional fields use their default values if left empty.
API
Trigger a workflow programmatically by sending an HTTP POST request to the execute endpoint. Enable the API trigger in theconfig.yaml:
Each workflow has its own API key, visible in the API Trigger tab of the editor. Keep this key secret — it authenticates requests to your workflow.
Schedule
Run workflows on a recurring schedule using cron expressions. Configure schedules in theconfig.yaml:
Scheduled runs execute the latest commit. To pause a schedule, set
enabled: false and commit the change.