mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
parent
ea2cce72c3
commit
bc7ef8abca
3 changed files with 30 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": "01KM34GS97TRKAYXG5A1W3Q437",
|
||||
"workflow_name": "CommandPipeline",
|
||||
"goal": "Run two commands in sequence",
|
||||
"start_time": "2026-03-19T13:28:29.090509Z",
|
||||
"node_count": 4,
|
||||
"edge_count": 3,
|
||||
"run_branch": "fabro/run/01KM34GS97TRKAYXG5A1W3Q437",
|
||||
"base_sha": "8d78aa4aa1e0f778927c5728854955ee91a87db2",
|
||||
"base_branch": "main",
|
||||
"workflow_slug": "scenario",
|
||||
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
|
||||
}
|
||||
5
sandbox.json
Normal file
5
sandbox.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"provider": "daytona",
|
||||
"working_directory": "/home/daytona/workspace",
|
||||
"identifier": "fabro-01KM34GS97TRKAYXG5A1W3Q437"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue