Connections and slugs
Connecting an integration creates a connection. Each connection has a slug — a short, stable identifier that you put in a trigger’ssource field. The slug
is how a workflow says which connection an event must come from.
github_acme org connection and a github_acme-labs connection —
and target each independently from different workflows.
Available integrations
| Integration | Status | Events |
|---|---|---|
| GitHub | ✅ Shipped | push and other repository events |
| Sentry | ✅ Shipped | issue.created, issue.resolved, issue.assigned, issue.archived, issue.unresolved |
| Custom webhook | ✅ Shipped | received |
| Linear | 🚧 Coming soon | — |
| Slack | 🚧 Coming soon | — |
| GitLab | 🔜 Roadmap | — |
manual source needs no integration — it fires when you click
Run in the dashboard or call the API. See Triggers for
its schema.
The trigger contract
Every integration trigger shares the same two required fields, plus two optional ones:The connection slug the event must come from (for example
github_acme).The event name from that source (for example
push or issue.created). The
event names each integration emits are listed on its page.A CEL expression intended to narrow which events fire the trigger. Parsed but
not yet evaluated — today every event matching
(source, event) fires,
regardless of the filter. Authoring one now is safe and forward-compatible.Optional source-specific configuration. May be omitted for most sources.
Finding your connection slug
The slug is<provider>_<account>, lowercase: connecting the GitHub account
acme creates github_acme. Your workspace’s integration settings
(Settings → Integrations) show each connection’s display name — for example
“GitHub acme” for the slug github_acme. The workspace’s Settings → Events
page records every event a connection delivers; an event that shows No
workflows triggered usually means the source in your workflow does not match
the connection’s slug.

Webhook payloads
Shipfox does not maintain a reference for each provider’s webhook payload shape — those are owned by the provider and can change. Each integration page links to the provider’s own webhook documentation for the full payload. Shipfox forwards the raw event to the run so your steps can read whatever the provider sent.Related pages
GitHub
Connect a repository and trigger on pushes and other events.
Sentry
Trigger workflows when Sentry issues change state.
Custom webhook
Trigger from any system that can send an HTTP POST.