diff --git a/graph.fabro b/graph.fabro new file mode 100644 index 000000000..415b80441 --- /dev/null +++ b/graph.fabro @@ -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 +} diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..c3a07104a --- /dev/null +++ b/manifest.json @@ -0,0 +1,13 @@ +{ + "run_id": "01KMBJVDTTYZXHWH4JXCH8PN0V", + "workflow_name": "ConditionalBranching", + "goal": "Test conditional edge selection after a command", + "start_time": "2026-03-22T20:12:53.408891Z", + "node_count": 6, + "edge_count": 6, + "run_branch": "fabro/run/01KMBJVDTTYZXHWH4JXCH8PN0V", + "base_sha": "04320ff5f2f4a21a809ec9dc29c72c6bed3af156", + "base_branch": "issue-135", + "workflow_slug": "run", + "host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli" +} \ No newline at end of file diff --git a/sandbox.json b/sandbox.json new file mode 100644 index 000000000..e08e4f0f0 --- /dev/null +++ b/sandbox.json @@ -0,0 +1,5 @@ +{ + "provider": "daytona", + "working_directory": "/home/daytona/workspace", + "identifier": "fabro-01KMBJVDTTYZXHWH4JXCH8PN0V" +} \ No newline at end of file