diff --git a/graph.fabro b/graph.fabro new file mode 100644 index 000000000..30da4a3ff --- /dev/null +++ b/graph.fabro @@ -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 +} diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..35c9a25c9 --- /dev/null +++ b/manifest.json @@ -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" +} \ No newline at end of file diff --git a/sandbox.json b/sandbox.json new file mode 100644 index 000000000..c192fc7da --- /dev/null +++ b/sandbox.json @@ -0,0 +1,4 @@ +{ + "provider": "local", + "working_directory": "/Users/bhelmkamp/.fabro/runs/20260314-01KKQ2KT7BS1KVPN21GY9K0733/worktree" +} \ No newline at end of file