mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 00:00:33 +00:00
7fb729cc84
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
532 B
Markdown
25 lines
532 B
Markdown
# Windmill Triggers
|
|
|
|
Triggers allow external events to invoke your scripts and flows.
|
|
|
|
## File Naming
|
|
|
|
Trigger configuration files use the pattern: `{path}.{trigger_type}_trigger.yaml`
|
|
|
|
Examples:
|
|
- `u/user/webhook.http_trigger.yaml`
|
|
- `f/data/kafka_consumer.kafka_trigger.yaml`
|
|
- `f/sync/postgres_cdc.postgres_trigger.yaml`
|
|
|
|
## CLI Commands
|
|
|
|
After writing, tell the user they can run these commands (do NOT run them yourself):
|
|
|
|
```bash
|
|
# Push trigger configuration
|
|
wmill sync push
|
|
|
|
# Pull triggers from Windmill
|
|
wmill sync pull
|
|
```
|