⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-03-19 09:41:01 -04:00
parent f32ef96c0c
commit 77da76e801
3 changed files with 35 additions and 0 deletions

18
graph.fabro Normal file
View file

@ -0,0 +1,18 @@
digraph ConditionalBranching {
graph [goal="Test conditional edge selection after a command"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
cmd [label="Run Command", shape=parallelogram, script="echo pass"]
gate [label="Check Result", shape=diamond]
passed [label="Passed", shape=parallelogram, script="echo branch-passed"]
failed [label="Failed", shape=parallelogram, script="echo branch-failed"]
start -> cmd -> gate
gate -> passed [label="Pass", condition="outcome=success"]
gate -> failed [label="Fail"]
passed -> exit
failed -> exit
}

13
manifest.json Normal file
View file

@ -0,0 +1,13 @@
{
"run_id": "01KM357YAGTFTCWFQFGZ9BS707",
"workflow_name": "ConditionalBranching",
"goal": "Test conditional edge selection after a command",
"start_time": "2026-03-19T13:41:01.026701Z",
"node_count": 6,
"edge_count": 6,
"run_branch": "fabro/run/01KM357YAGTFTCWFQFGZ9BS707",
"base_sha": "a7a6c53c9b09e231ba0e474d14c3a10280570c74",
"base_branch": "main",
"workflow_slug": "scenario",
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
}

4
sandbox.json Normal file
View file

@ -0,0 +1,4 @@
{
"provider": "local",
"working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmpU399IL/run/worktree"
}