fabro/graph.fabro
Fabro d9a93b641e init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-05-09 15:18:45 -04:00

12 lines
525 B
Text

digraph CommitPickerValidation {
graph [goal="Create two committed sandbox changes for validating the run files commit picker"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
implement [label="implement", shape=parallelogram, script="printf '\\nStage implement wrote this line.\\n' >> validation.txt"]
verify [label="verify", shape=parallelogram, script="printf 'Stage verify wrote this line.\\n' >> validation.txt"]
start -> implement -> verify -> exit
}