
How to create a workflow
- Click “Workflows” → “Create New” in the left sidebar
- Drag components from the left panel onto the canvas
- Connect them by dragging from output to input
- Configure each step by clicking and filling in the details
- Test it with the “Execute Workflow” button


Common workflow patterns
Deployment workflow:- Trigger: GitHub webhook
- Step 1: Build Docker image
- Step 2: Deploy to Kubernetes
- Step 3: Send Slack notification
- Trigger: Schedule (every 5 minutes)
- Step 1: Check service health
- Step 2: If unhealthy → restart service
- Step 3: Log results
- Trigger: New repository
- Step 1: Run security scan
- Step 2: Create GitHub issue if vulnerabilities found
- Step 3: Notify security team
Testing your workflow

- Click “Execute Workflow” in the top toolbar
- Watch it run - each step shows progress in real-time
- Check the results - see outputs, logs, and any errors
- Fix issues - edit steps and test again
Sharing workflows
- Save - Store for later use
- Publish - Make available to your team
- Export - Download as YAML file
- Fork - Create a copy to modify
Need help?
- Stuck on a step? Click the ”?” icon on any component for help
- Want examples? Browse workflow templates in the designer
- Complex automation? Try building with code instead
Pro tip: Start with a simple 2-step workflow first. You can always add more complexity later.