mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-12 23:02:41 +00:00
parent
f747d277d9
commit
45805063c5
3 changed files with 32 additions and 0 deletions
16
graph.fabro
Normal file
16
graph.fabro
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
digraph Conditions {
|
||||
graph [goal="Test condition evaluation with OR and parentheses"]
|
||||
|
||||
start [shape=Mdiamond]
|
||||
exit [shape=Msquare]
|
||||
|
||||
decide [label="Decide", shape=diamond]
|
||||
path_a [label="Path A"]
|
||||
path_b [label="Path B"]
|
||||
|
||||
start -> decide
|
||||
decide -> path_a [condition="outcome=success && context.mode=fast"]
|
||||
decide -> path_b
|
||||
path_a -> exit
|
||||
path_b -> exit
|
||||
}
|
||||
12
manifest.json
Normal file
12
manifest.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"run_id": "01KKQ2KT79N7X7654TTGWHEE3X",
|
||||
"workflow_name": "Conditions",
|
||||
"goal": "Test condition evaluation with OR and parentheses",
|
||||
"start_time": "2026-03-14T21:04:10.861263Z",
|
||||
"node_count": 5,
|
||||
"edge_count": 5,
|
||||
"run_branch": "fabro/run/01KKQ2KT79N7X7654TTGWHEE3X",
|
||||
"base_sha": "312bef9b877f49abf4a2f34679f564826061b0d9",
|
||||
"base_branch": "main",
|
||||
"workflow_slug": "test"
|
||||
}
|
||||
4
sandbox.json
Normal file
4
sandbox.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"provider": "local",
|
||||
"working_directory": "/Users/bhelmkamp/.fabro/runs/20260314-01KKQ2KT79N7X7654TTGWHEE3X/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue