From a663ce574836b4ce42ac48af0f2302190899ddd3 Mon Sep 17 00:00:00 2001 From: Fabro Date: Thu, 19 Mar 2026 09:28:22 -0400 Subject: [PATCH] init run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ⚒️ Generated with [Fabro](https://fabro.sh) --- graph.fabro | 18 ++++++++++++++++++ manifest.json | 13 +++++++++++++ sandbox.json | 4 ++++ 3 files changed, 35 insertions(+) create mode 100644 graph.fabro create mode 100644 manifest.json create mode 100644 sandbox.json 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..de826c491 --- /dev/null +++ b/manifest.json @@ -0,0 +1,13 @@ +{ + "run_id": "01KM34GS7MGGDNWXB4FCTX9AKP", + "workflow_name": "ConditionalBranching", + "goal": "Test conditional edge selection after a command", + "start_time": "2026-03-19T13:28:22.018774Z", + "node_count": 6, + "edge_count": 6, + "run_branch": "fabro/run/01KM34GS7MGGDNWXB4FCTX9AKP", + "base_sha": "77698635f21cd4794576014a650b90e3c337c701", + "base_branch": "main", + "workflow_slug": "scenario", + "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..dac328239 --- /dev/null +++ b/sandbox.json @@ -0,0 +1,4 @@ +{ + "provider": "local", + "working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmpFGmsh2/run/worktree" +} \ No newline at end of file