mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
parent
3ab941c64a
commit
67499e2a50
3 changed files with 442 additions and 0 deletions
431
run.json
Normal file
431
run.json
Normal file
|
|
@ -0,0 +1,431 @@
|
|||
{
|
||||
"run_id": "01KN4VB09T999RE1V2DD8Z3YC3",
|
||||
"created_at": "2026-04-01T15:42:05.116375Z",
|
||||
"settings": {
|
||||
"version": 1,
|
||||
"goal": "# Add `--force` flag to `fabro pr create`\n\n## Context\n`fabro pr create` rejects runs with non-success status. Users sometimes want to create PRs for failed runs (e.g. partial work worth reviewing). A `--force` flag bypasses the status check.\n\n## Changes\n\n### 1. Add `--force` flag to `PrCreateArgs` (`lib/crates/fabro-cli/src/args.rs:582-588`)\nAdd `#[arg(short, long)] pub(crate) force: bool` to `PrCreateArgs`.\n\n### 2. Pass `force` through and skip status check (`lib/crates/fabro-cli/src/commands/pr/create.rs:76-79`)\nReplace the hard bail with a warning when `--force` is set:\n```rust\nmatch conclusion.status {\n StageStatus::Success | StageStatus::PartialSuccess => {}\n status if args.force => {\n tracing::warn!(\"Run status is '{status}', proceeding because --force was specified\");\n }\n status => bail!(\"Run status is '{status}', expected success or partial_success\"),\n}\n```\n\n### 3. Add `setup_failed_run` helper (`lib/crates/fabro-cli/tests/it/cmd/support.rs`)\nNew helper that runs a real (non-dry-run) workflow with a `shape=parallelogram, script=\"exit 1\"` node. This produces a genuine `conclusion.json` with `status: \"fail\"`. Pattern follows `run_local_workflow` — uses `--sandbox local --provider openai` with `OPENAI_API_KEY=test`. The helper won't assert CLI exit success since the workflow fails; instead it finds the run dir via `only_run`.\n\n### 4. Add integration tests (`lib/crates/fabro-cli/tests/it/cmd/pr_create.rs`)\n\n**a) `pr_create_failed_run_rejects_without_force`** — `setup_failed_run`, run `pr create <run_id>`, assert error \"Run status is 'fail', expected success or partial_success\"\n\n**b) `pr_create_failed_run_proceeds_with_force`** — `setup_failed_run`, run `pr create --force <run_id>`, assert it passes status check and hits next validation error (\"Run has no run_branch\"). Proves `--force` bypassed the status gate.\n\n## Verification\n- `cargo clippy -p fabro-cli -- -D warnings`\n- `cargo nextest run -p fabro-cli`\n- `./target/debug/fabro pr create --help` — confirm `-f`/`--force` appears\n",
|
||||
"goal_file": "/Users/bhelmkamp/.claude/plans/concurrent-moseying-mango.md",
|
||||
"graph": "workflow.fabro",
|
||||
"llm": {
|
||||
"model": "claude-sonnet-4-6",
|
||||
"provider": "anthropic",
|
||||
"fallbacks": null
|
||||
},
|
||||
"sandbox": {
|
||||
"provider": "daytona",
|
||||
"preserve": null,
|
||||
"devcontainer": null,
|
||||
"local": null,
|
||||
"daytona": {
|
||||
"auto_stop_interval": 30,
|
||||
"labels": {
|
||||
"repo": "fabro-sh/fabro"
|
||||
},
|
||||
"snapshot": {
|
||||
"name": "fabro-v6",
|
||||
"cpu": 4,
|
||||
"memory": 8,
|
||||
"disk": 20,
|
||||
"dockerfile": "FROM ubuntu:24.04\n\nRUN apt-get update && apt-get install -y --no-install-recommends curl git ca-certificates build-essential pkg-config libssl-dev unzip python3 && rm -rf /var/lib/apt/lists/*\n\n# GitHub CLI\nRUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && apt-get update && apt-get install -y --no-install-recommends gh && rm -rf /var/lib/apt/lists/*\n\n# Rust\nRUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y\nENV PATH=\"/root/.cargo/bin:${PATH}\"\nRUN cargo install cargo-nextest --locked\nENV CARGO_INCREMENTAL=0\n\n# Bun\nRUN curl -fsSL https://bun.sh/install | bash\nENV PATH=\"/root/.bun/bin:${PATH}\"\n\nWORKDIR /root\n"
|
||||
},
|
||||
"network": null,
|
||||
"skip_clone": false
|
||||
},
|
||||
"env": null
|
||||
},
|
||||
"pull_request": {
|
||||
"enabled": true,
|
||||
"draft": false,
|
||||
"auto_merge": false,
|
||||
"merge_strategy": "squash"
|
||||
},
|
||||
"hooks": [
|
||||
{
|
||||
"name": "cargo-fmt",
|
||||
"event": "post_tool_use",
|
||||
"command": "cargo fmt",
|
||||
"matcher": "write_file|edit_file|apply_patch",
|
||||
"blocking": true,
|
||||
"timeout_ms": null,
|
||||
"sandbox": null
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
"session_sandboxes": false,
|
||||
"retros": false
|
||||
},
|
||||
"log": {
|
||||
"level": "debug"
|
||||
},
|
||||
"git": {
|
||||
"provider": "github",
|
||||
"app_id": "2993730",
|
||||
"client_id": "Iv23li3Pu4pCpsmPopVN",
|
||||
"slug": "brynary-fabro",
|
||||
"author": {
|
||||
"name": null,
|
||||
"email": null
|
||||
},
|
||||
"webhooks": null
|
||||
},
|
||||
"fabro": {
|
||||
"root": "fabro/"
|
||||
}
|
||||
},
|
||||
"graph": {
|
||||
"name": "ImplementPlan",
|
||||
"nodes": {
|
||||
"exit": {
|
||||
"id": "exit",
|
||||
"attrs": {
|
||||
"shape": {
|
||||
"String": "Msquare"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"label": {
|
||||
"String": "Exit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fixup": {
|
||||
"id": "fixup",
|
||||
"attrs": {
|
||||
"prompt": {
|
||||
"String": "The verify step failed. Read the build output from context and fix all clippy lint warnings and test failures."
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"max_visits": {
|
||||
"Integer": 3
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"label": {
|
||||
"String": "Fixup"
|
||||
}
|
||||
}
|
||||
},
|
||||
"preflight_compile": {
|
||||
"id": "preflight_compile",
|
||||
"attrs": {
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"label": {
|
||||
"String": "Preflight Compile"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo check -q --workspace 2>&1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fmt": {
|
||||
"id": "fmt",
|
||||
"attrs": {
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo fmt --all 2>&1"
|
||||
},
|
||||
"label": {
|
||||
"String": "Format"
|
||||
}
|
||||
}
|
||||
},
|
||||
"implement": {
|
||||
"id": "implement",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Implement"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "Read the plan file referenced in the goal and implement every step. Make all the code changes described in the plan. Use red/green TDD."
|
||||
}
|
||||
}
|
||||
},
|
||||
"preflight_lint": {
|
||||
"id": "preflight_lint",
|
||||
"attrs": {
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"label": {
|
||||
"String": "Preflight Lint"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo clippy -q --workspace -- -D warnings 2>&1"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
}
|
||||
}
|
||||
},
|
||||
"verify": {
|
||||
"id": "verify",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Verify"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"retry_target": {
|
||||
"String": "fixup"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo clippy -q --workspace -- -D warnings 2>&1 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1"
|
||||
},
|
||||
"goal_gate": {
|
||||
"Boolean": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"toolchain": {
|
||||
"id": "toolchain",
|
||||
"attrs": {
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"label": {
|
||||
"String": "Toolchain"
|
||||
},
|
||||
"script": {
|
||||
"String": "command -v cargo >/dev/null || { curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && sudo ln -sf $HOME/.cargo/bin/* /usr/local/bin/; }; cargo --version 2>&1"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fix_lints": {
|
||||
"id": "fix_lints",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"max_visits": {
|
||||
"Integer": 3
|
||||
},
|
||||
"prompt": {
|
||||
"String": "The preflight lint step failed. Read the build output from context and fix all clippy lint warnings."
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"label": {
|
||||
"String": "Fix Lints"
|
||||
}
|
||||
}
|
||||
},
|
||||
"start": {
|
||||
"id": "start",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"label": {
|
||||
"String": "Start"
|
||||
},
|
||||
"shape": {
|
||||
"String": "Mdiamond"
|
||||
}
|
||||
}
|
||||
},
|
||||
"simplify_opus": {
|
||||
"id": "simplify_opus",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "# Simplify: Code Review and Cleanup\n\nReview all changed files for reuse, quality, and efficiency. Fix any issues found.\n\n## Phase 1: Identify Changes\n\nRun git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation.\n\n## Phase 2: Launch Three Review Agents in Parallel\n\nUse the Agent tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context.\n\n### Agent 1: Code Reuse Review\n\nFor each change:\n\n1. Search for existing utilities and helpers that could replace newly written code. Use Grep to find similar patterns elsewhere in the codebase — common locations are utility directories, shared modules, and files adjacent to the changed ones.\n2. Flag any new function that duplicates existing functionality. Suggest the existing function to use instead.\n3. Flag any inline logic that could use an existing utility — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards, and similar patterns are common candidates.\n\nNote: This is a greenfield app, so focus on maximizing simplicity and don't worry about changing things to achieve it.\n\n### Agent 2: Code Quality Review\n\nReview the same changes for hacky patterns:\n\n1. Redundant state: state that duplicates existing state, cached values that could be derived, observers/effects that could be direct calls\n2. Parameter sprawl: adding new parameters to a function instead of generalizing or restructuring existing ones\n3. Copy-paste with slight variation: near-duplicate code blocks that should be unified with a shared abstraction\n4. Leaky abstractions: exposing internal details that should be encapsulated, or breaking existing abstraction boundaries\n5. Stringly-typed code: using raw strings where constants, enums (string unions), or branded types already exist in the codebase\n\nNote: This is a greenfield app, so be aggressive in optimizing quality.\n\n### Agent 3: Efficiency Review\n\nReview the same changes for efficiency:\n\n1. Unnecessary work: redundant computations, repeated file reads, duplicate network/API calls, N+1 patterns\n2. Missed concurrency: independent operations run sequentially when they could run in parallel\n3. Hot-path bloat: new blocking work added to startup or per-request/per-render hot paths\n4. Unnecessary existence checks: pre-checking file/resource existence before operating (TOCTOU anti-pattern) — operate directly and handle the error\n5. Memory: unbounded data structures, missing cleanup, event listener leaks\n6. Overly broad operations: reading entire files when only a portion is needed, loading all items when filtering for one\n\n## Phase 3: Fix Issues\n\nWait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.\n\nWhen done, briefly summarize what was fixed (or confirm the code was already clean)."
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-6"
|
||||
},
|
||||
"label": {
|
||||
"String": "Simplify (Opus)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"simplify_gpt": {
|
||||
"id": "simplify_gpt",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "openai"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "# Simplify: Code Review and Cleanup\n\nReview all changed files for reuse, quality, and efficiency. Fix any issues found.\n\n## Phase 1: Identify Changes\n\nRun git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation.\n\n## Phase 2: Launch Three Review Agents in Parallel\n\nUse the Agent tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context.\n\n### Agent 1: Code Reuse Review\n\nFor each change:\n\n1. Search for existing utilities and helpers that could replace newly written code. Use Grep to find similar patterns elsewhere in the codebase — common locations are utility directories, shared modules, and files adjacent to the changed ones.\n2. Flag any new function that duplicates existing functionality. Suggest the existing function to use instead.\n3. Flag any inline logic that could use an existing utility — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards, and similar patterns are common candidates.\n\nNote: This is a greenfield app, so focus on maximizing simplicity and don't worry about changing things to achieve it.\n\n### Agent 2: Code Quality Review\n\nReview the same changes for hacky patterns:\n\n1. Redundant state: state that duplicates existing state, cached values that could be derived, observers/effects that could be direct calls\n2. Parameter sprawl: adding new parameters to a function instead of generalizing or restructuring existing ones\n3. Copy-paste with slight variation: near-duplicate code blocks that should be unified with a shared abstraction\n4. Leaky abstractions: exposing internal details that should be encapsulated, or breaking existing abstraction boundaries\n5. Stringly-typed code: using raw strings where constants, enums (string unions), or branded types already exist in the codebase\n\nNote: This is a greenfield app, so be aggressive in optimizing quality.\n\n### Agent 3: Efficiency Review\n\nReview the same changes for efficiency:\n\n1. Unnecessary work: redundant computations, repeated file reads, duplicate network/API calls, N+1 patterns\n2. Missed concurrency: independent operations run sequentially when they could run in parallel\n3. Hot-path bloat: new blocking work added to startup or per-request/per-render hot paths\n4. Unnecessary existence checks: pre-checking file/resource existence before operating (TOCTOU anti-pattern) — operate directly and handle the error\n5. Memory: unbounded data structures, missing cleanup, event listener leaks\n6. Overly broad operations: reading entire files when only a portion is needed, loading all items when filtering for one\n\n## Phase 3: Fix Issues\n\nWait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.\n\nWhen done, briefly summarize what was fixed (or confirm the code was already clean)."
|
||||
},
|
||||
"model": {
|
||||
"String": "gpt-5.4"
|
||||
},
|
||||
"label": {
|
||||
"String": "Simplify (GPT-54)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"edges": [
|
||||
{
|
||||
"from": "start",
|
||||
"to": "toolchain",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "toolchain",
|
||||
"to": "preflight_compile",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=success"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "toolchain",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "preflight_compile",
|
||||
"to": "preflight_lint",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=success"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "preflight_compile",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "preflight_lint",
|
||||
"to": "implement",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=success"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "preflight_lint",
|
||||
"to": "fix_lints",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fix_lints",
|
||||
"to": "preflight_lint",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "implement",
|
||||
"to": "simplify_opus",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "simplify_opus",
|
||||
"to": "simplify_gpt",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "simplify_gpt",
|
||||
"to": "verify",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "verify",
|
||||
"to": "fmt",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=success"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "verify",
|
||||
"to": "fixup",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fixup",
|
||||
"to": "verify",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fmt",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
}
|
||||
],
|
||||
"attrs": {
|
||||
"model_stylesheet": {
|
||||
"String": "\n * { model: claude-opus-4-6; }\n "
|
||||
},
|
||||
"goal": {
|
||||
"String": "# Add `--force` flag to `fabro pr create`\n\n## Context\n`fabro pr create` rejects runs with non-success status. Users sometimes want to create PRs for failed runs (e.g. partial work worth reviewing). A `--force` flag bypasses the status check.\n\n## Changes\n\n### 1. Add `--force` flag to `PrCreateArgs` (`lib/crates/fabro-cli/src/args.rs:582-588`)\nAdd `#[arg(short, long)] pub(crate) force: bool` to `PrCreateArgs`.\n\n### 2. Pass `force` through and skip status check (`lib/crates/fabro-cli/src/commands/pr/create.rs:76-79`)\nReplace the hard bail with a warning when `--force` is set:\n```rust\nmatch conclusion.status {\n StageStatus::Success | StageStatus::PartialSuccess => {}\n status if args.force => {\n tracing::warn!(\"Run status is '{status}', proceeding because --force was specified\");\n }\n status => bail!(\"Run status is '{status}', expected success or partial_success\"),\n}\n```\n\n### 3. Add `setup_failed_run` helper (`lib/crates/fabro-cli/tests/it/cmd/support.rs`)\nNew helper that runs a real (non-dry-run) workflow with a `shape=parallelogram, script=\"exit 1\"` node. This produces a genuine `conclusion.json` with `status: \"fail\"`. Pattern follows `run_local_workflow` — uses `--sandbox local --provider openai` with `OPENAI_API_KEY=test`. The helper won't assert CLI exit success since the workflow fails; instead it finds the run dir via `only_run`.\n\n### 4. Add integration tests (`lib/crates/fabro-cli/tests/it/cmd/pr_create.rs`)\n\n**a) `pr_create_failed_run_rejects_without_force`** — `setup_failed_run`, run `pr create <run_id>`, assert error \"Run status is 'fail', expected success or partial_success\"\n\n**b) `pr_create_failed_run_proceeds_with_force`** — `setup_failed_run`, run `pr create --force <run_id>`, assert it passes status check and hits next validation error (\"Run has no run_branch\"). Proves `--force` bypassed the status gate.\n\n## Verification\n- `cargo clippy -p fabro-cli -- -D warnings`\n- `cargo nextest run -p fabro-cli`\n- `./target/debug/fabro pr create --help` — confirm `-f`/`--force` appears\n"
|
||||
},
|
||||
"rankdir": {
|
||||
"String": "LR"
|
||||
}
|
||||
}
|
||||
},
|
||||
"workflow_slug": "implement-plan",
|
||||
"working_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
||||
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
||||
"base_branch": "main"
|
||||
}
|
||||
5
sandbox.json
Normal file
5
sandbox.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"provider": "daytona",
|
||||
"working_directory": "/home/daytona/workspace",
|
||||
"identifier": "fabro-01KN4VB09T999RE1V2DD8Z3YC3"
|
||||
}
|
||||
6
start.json
Normal file
6
start.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"run_id": "01KN4VB09T999RE1V2DD8Z3YC3",
|
||||
"start_time": "2026-04-01T15:42:12.854390Z",
|
||||
"run_branch": "fabro/run/01KN4VB09T999RE1V2DD8Z3YC3",
|
||||
"base_sha": "e6623decba5fa54b539b9ef8ada5a7a798a90c9b"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue