run_pipeline
Execute development pipelines with configurable options to run specific tasks, skip others, apply fixes, and control output format for streamlined workflow automation.
Instructions
Execute devpipe with specified configuration and flags. Runs the development pipeline and returns results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| config | No | Path to config.toml file | |
| only | No | Run only specific tasks (can specify multiple) | |
| skip | No | Skip specific tasks (can specify multiple) | |
| since | No | Git reference to run checks on changes since (e.g., HEAD, main, origin/main) | |
| fixType | No | How to handle auto-fixable issues: auto (fix automatically), helper (show fix command), none (no fixes) | |
| ui | No | UI mode: basic (simple output) or full (animated progress) | |
| dashboard | No | Show dashboard view in terminal | |
| failFast | No | Stop execution on first failure | |
| fast | No | Skip tasks that take longer than fastThreshold | |
| dryRun | No | Show what would be executed without running | |
| verbose | No | Enable verbose output | |
| noColor | No | Disable colored output |