Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Generic Webhook Trigger

Any HTTP POST to /webhooks/{name} creates a generic webhook event where the event string is the path segment {name}.

# Fires on POST /webhooks/deployment
trigger:
  webhook:
    - deployment

Generic webhooks have no signature verification. Use network-level controls (tunnel auth, IP allowlist) if the endpoint is public.

Example

trigger:
  webhook:
    - deploy-complete
agent: notifier
prompt: |
  A deployment just completed. Summarize and post to Slack.
orchestrator: false

See also

  • Filters — narrow which events reach this pipeline
  • Public Access — expose the daemon to receive webhooks