CI/CD Pipelines
Set up automated build and deployment pipelines for your applications.Create a Pipeline
Trigger Types
| Trigger | Description |
|---|---|
push | Automatically runs on git push to the specified branch |
manual | Only runs when manually triggered |
schedule | Runs on a cron schedule |
Manual Trigger
View Pipeline Runs
Webhook-Based Triggers
Combine pipelines with webhooks for event-driven deployments:- Create a webhook for
app.deployedevents - Trigger downstream pipelines or notifications
- Use event rules for complex automation workflows
Pipeline Status Reference
| Status | Description |
|---|---|
pending | Queued for execution |
running | Currently executing steps |
success | All steps completed |
failed | A step failed |
cancelled | Manually stopped |
Best Practices
- Use
mainbranch for production — trigger deploys only from stable branches - Add a test step — catch issues before deployment
- Set up notifications — use webhooks to alert on failures
- Review pipeline logs — check run history for debugging