Features
Built for speed and reliability. Intentionally limited.
what we do
-
Fast Webhook Dispatch
We receive the webhook from GitHub and route it to your worker via WebSocket immediately. No job queues.
-
Warm Caching
Because the worker runs on your hardware, your git checkouts and package caches (node_modules, ~/.m2, etc.) naturally persist between runs.
-
Standard YAML Support
We parse standard .github/workflows/*.yml. Basic jobs, steps, environment variables, and shell scripts work out of the box.
-
Secure Secrets
Pass secrets locally via environment variables to the worker binary. They never leave your infrastructure.
what we do not do
-
Service Containers
We do not support the
servicesblock (e.g. spinning up Postgres/Redis adjacent to the build). You must run your dependencies manually or use Docker Compose in a shell step. -
Container Jobs
We run jobs directly on the host OS. We do not spin up isolated containers per job automatically.
-
Complex Actions
Composite actions, reusable workflows, and certain third-party marketplace actions may fail. Simple
runsteps are preferred.