Building CI/CD pipelines shouldn't require a YAML expert. We're making pipeline configuration accessible to everyone.
Our intuitive interface transforms complex YAML configuration into a visual, easy-to-understand format.
See your CI/CD pipeline come to life with our interactive builder that shows the relationships between stages and jobs.
Start with pre-built templates for popular frameworks and customize them to fit your specific needs.
Generate valid YAML instantly as you build, with syntax highlighting and error checking built in.
YAML Flow is an open source project dedicated to making pipeline configuration more accessible. We welcome contributions from the community.
# YAML Flow makes this easy
name: my-pipeline
trigger:
branches:
- main
stages:
- stage: Build
jobs:
- job: BuildJob
steps:
- script: npm install
- script: npm test