mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
parent
f32ef96c0c
commit
f73227b8db
3 changed files with 29 additions and 0 deletions
12
graph.fabro
Normal file
12
graph.fabro
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
digraph CommandPipeline {
|
||||
graph [goal="Run two commands in sequence"]
|
||||
rankdir=LR
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
|
||||
step1 [label="Step 1", shape=parallelogram, script="echo hello-from-step1"]
|
||||
step2 [label="Step 2", shape=parallelogram, script="echo hello-from-step2"]
|
||||
|
||||
start -> step1 -> step2 -> exit
|
||||
}
|
||||
13
manifest.json
Normal file
13
manifest.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"run_id": "01KM357YAH35WGJC5Q0CFTYT5H",
|
||||
"workflow_name": "CommandPipeline",
|
||||
"goal": "Run two commands in sequence",
|
||||
"start_time": "2026-03-19T13:41:01.030540Z",
|
||||
"node_count": 4,
|
||||
"edge_count": 3,
|
||||
"run_branch": "fabro/run/01KM357YAH35WGJC5Q0CFTYT5H",
|
||||
"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
4
sandbox.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"provider": "local",
|
||||
"working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmprr4hlp/run/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue