⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-03-14 17:04:10 -04:00
parent f747d277d9
commit 4ea73ae49a
3 changed files with 35 additions and 0 deletions

19
graph.fabro Normal file
View file

@ -0,0 +1,19 @@
digraph Parallel {
graph [goal="Test parallel and fan-in execution"]
start [shape=Mdiamond]
exit [shape=Msquare]
fork [label="Fork Work", shape=component, join_policy="wait_all", error_policy="continue"]
branch1 [label="Branch 1"]
branch2 [label="Branch 2"]
merge [label="Merge Results", shape=tripleoctagon]
review [label="Review"]
start -> fork
fork -> branch1
fork -> branch2
branch1 -> merge
branch2 -> merge
merge -> review -> exit
}

12
manifest.json Normal file
View file

@ -0,0 +1,12 @@
{
"run_id": "01KKQ2KT7BS1KVPN21GY9K0733",
"workflow_name": "Parallel",
"goal": "Test parallel and fan-in execution",
"start_time": "2026-03-14T21:04:10.856614Z",
"node_count": 7,
"edge_count": 7,
"run_branch": "fabro/run/01KKQ2KT7BS1KVPN21GY9K0733",
"base_sha": "312bef9b877f49abf4a2f34679f564826061b0d9",
"base_branch": "main",
"workflow_slug": "test"
}

4
sandbox.json Normal file
View file

@ -0,0 +1,4 @@
{
"provider": "local",
"working_directory": "/Users/bhelmkamp/.fabro/runs/20260314-01KKQ2KT7BS1KVPN21GY9K0733/worktree"
}