[aw] Failure Investigator (6h) #499
aw-failure-investigator.lock.yml
on: schedule
Annotations
6 errors and 3 warnings
|
agent
Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"impact\": \"Workflow did not complete successfully and may need intervention\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"medium\",\n \"title\": \"Blocked Network Requests\",\n \"description\": \"1 network request(s) were blocked by firewall\",\n \"impact\": \"Blocked requests may indicate missing network permissions or unexpected behavior\"\n }\n ],\n \"recommendations\": [\n {\n \"priority\": \"high\",\n \"action\": \"Review error logs to identify root cause of failure\",\n \"reason\": \"Understanding failure causes helps prevent recurrence\",\n \"example\": \"Check the errors field for specific error messages, or inspect the log files in logs_path\"\n },\n {\n \"priority\": \"medium\",\n \"action\": \"Add blocked domains to the workflow network allow-list\",\n \"reason\": \"Firewall-blocked domains prevent the agent from completing its tasks\",\n \"example\": \"Add allowed domains to network configuration or review firewall rules\"\n }\n ],\n \"observability_insights\": [\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Directed execution path\",\n \"summary\": \"The run remained relatively linear with 0 turns and 0 tool types.\",\n \"evidence\": \"turns=0 tool_types=0\"\n },\n {\n \"category\": \"actuation\",\n \"severity\": \"info\",\n \"title\": \"Read-only posture observed\",\n \"summary\": \"The workflow stayed in an analysis posture and did not emit any GitHub write actions.\",\n \"evidence\": \"created_items=0 safe_items=0\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"high\",\n \"title\": \"Network friction detected\",\n \"summary\": \"The firewall observed 1 request(s) with 1 blocked, for a 100% block rate.\",\n \"evidence\": \"blocked=1 total=1\"\n },\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Log template patterns mined\",\n \"summary\": \"Analysis identified 1 distinct event templates across 6 pipeline stages from 1 events.\",\n \"evidence\": \"finish=1\"\n },\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Agent stage sequence\",\n \"summary\": \"The observed pipeline stage sequence for this run.\",\n \"evidence\": \"finish\"\n }\n ],\n \"performance_metrics\": {\n \"network_requests\": 1\n },\n \"engine_config\": {\n \"engine_id\": \"copilot\",\n \"engine_name\": \"GitHub Copilot CLI\",\n \"model\": \"auto\",\n \"version\": \"1.0.80\",\n \"firewall_version\": \"v0.28.1\",\n \"trigger_event\": \"schedule\",\n \"repository\": \"github/gh-aw\"\n },\n \"prompt_analysis\": {\n \"prompt_size\": 15280,\n \"prompt_file\": \"aw-prompts/prompt.txt\"\n },\n \"session_analysis\": {\n \"wall_time\": \"6.6m\",\n \"timeout_detected\": false\n },\n \"jobs\": [\n {\n \"name\": \"pre_activation\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"duration\": \"18.0s\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Checkout actions folder\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Setup Scripts\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Check team membership for workflow\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Check skip-if-match query\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Post Setup Scripts\",\n \"status\": \"comp
|
|
agent
ERR_VALIDATION: Handler manager failed: ERR_PARSE: Failed to parse GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG: Expected ',' or '}' after property value in JSON at position 200 (line 1 column 201)\n```\n\nNo safe output (comments, PR pushes, issue creation) is ever processed for the run once this hits — the `agent` job's work is silently dropped.\n\n### Affected workflows and runs\n\n- `PR Sous Chef` (`.github/workflows/pr-sous-chef.lock.yml`) — confirmed identical signature in [§32171918501](https://github.com/github/gh-aw/actions/runs/32171918501), [§32170093369](https://github.com/github/gh-aw/actions/runs/32170093369), [§32168627250](https://github.com/github/gh-aw/actions/runs/32168627250), [§32167555737](https://github.com/github/gh-aw/actions/runs/32167555737), [§32166311424](https://github.com/github/gh-aw/actions/runs/32166311424); pattern present on effectively every trigger since ~2026-08-17 (see the 30+ open `[aw] Failed jobs: PR Sous Chef` notifier issues, #53245 → #53802).\n\n### Probable root cause\n\n`.github/workflows/pr-sous-chef.lock.yml:2566` (and the equivalent `GH_AW_SAFE_OUTPUTS_CONFIG` at line 837) embed the PR allow-list as a **quoted** JSON string:\n\n```\n\\\"allowed_pull_requests\\\":\\\"${{ needs.approval_allowlist.outputs.eligible_pull_request_numbers }}\\\"\n```\n\n`needs.approval_allowlist.outputs.eligible_pull_request_numbers` (lock.yml:1515) is produced by `jq -c '[.prs[]?.number | tostring]'`, so at runtime it already renders as a JSON array literal, e.g. `[\"53698\",\"53725\",\"53720\"]`. GitHub Actions performs a literal text substitution with no re-escaping for the surrounding JSON-string context, so the array's own quotes collide with the wrapping quotes and the JSON breaks. Reproduced locally: feeding the captured `GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG` text to a JSON parser fails at the exact same field with \"expected ',' or '}'\".\n\nThis is generated by `AddTemplatableStringSlice` in `pkg/workflow/compiler_safe_outputs_builder.go:63-75`, invoked for this field at `pkg/workflow/safe_outputs_handler_registry.go:300`. When a field's value is a single-element slice matching `${{ ... }}` (`isExpression`, `pkg/workflow/expression_patterns.go:95`), the builder stores the raw expression string as a scalar (`b.config[key] = value[0]`), which `json.Marshal` then wraps in quotes when the final config map is serialized. That's only safe when the expression's *runtime* output is a plain scalar with no embedded quote/bracket characters — it silently corrupts the JSON whenever the expression's output is itself JSON (arrays/objects), which is exactly what `eligible_pull_request_numbers` produces.\n\nThe consumer, `parseAllowedPullRequests` in `actions/setup/js/approve_workflow_run.cjs:36-49`, already handles either a real JSON array or a bracket-string via `JSON.parse` — it expects unquoted array splicing, not a quoted-string wra\n=== comments ===","is_error":false}]},"parent_tool_use_id":null,"session_id":"473d5dd5-241d-45e0-93e6-a28aab73a425","uuid":"98a52b63-be72-4c58-be55-8432f3fd7ad8","timestamp":"2026-08-19T01:19:55.626Z","tool_use_result":{"stdout":"state CLOSED reason COMPLETED closedAt 2026-08-19T00:50:21Z\n=== body ===\n### Problem\n\n`safe_outputs` job crashes on startup for every **PR Sous Chef** run — 18 of 24 failed runs in the last 6h — with:\n\n```\n##[error]ERR_VALIDATION: Handler manager failed: ERR_PARSE: Failed to parse GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG: Expected ',' or '}' after property value in JSON at position 200 (line 1 column 201)\n```\n\nNo safe output (comments, PR pushes, issue creation) is ever processed for the run once this hits — the `agent` job's work is silently dropped.\n\n### Affected workflows and runs\n\n- `PR Sous Chef` (`.github/workflows/pr-sous-chef.lock.yml`) — confirmed identical signature in [§32171918501](https://github.com/github/gh-aw/actions/runs/32171918501), [§32170093369](https://github.com/github/gh-aw/actions/runs/32170093369), [§32168627250](https://github.com/github/gh-aw/actions/runs/32168627250), [§32167555737](https://gi
|
|
agent
Agent execution exited with code 1\n2026-08-19T00:44:24.9058128Z ##[error]Process completed with exit code 1.\n=== firewall ===\n00:44:26.9292390Z AWF_LOGS_DIR: /tmp/gh-aw/sandbox/firewall/logs\n2026-08-19T00:44:26.9292632Z ##[endgroup]\n2026-08-19T00:44:27.5032695Z <details>\n2026-08-19T00:44:27.5033015Z <summary>Firewall Activity</summary>\n2026-08-19T00:44:27.5033270Z \n2026-08-19T00:44:27.5033652Z ▼ 0 requests | 0 allowed | 0 blocked | 0 unique domains\n2026-08-19T00:44:27.5033855Z \n2026-08-19T00:44:27.5033945Z No firewall activity detected.\n2026-08-19T00:44:27.5034083Z \n2026-08-19T00:44:27.5034155Z <details>\n2026-08-19T00:44:27.5034327Z <summary>Policy Rules</summary>\n2026-08-19T00:44:27.5034491Z \n2026-08-19T00:44:27.5034598Z | Rule | Action | Hits | Description |\n2026-08-19T00:44:27.5034825Z |------|--------|------|-------------|\n2026-08-19T00:44:27.5035353Z | deny-unsafe-ports | 🚫 deny | 0 | Deny requests to ports not in Safe_ports ACL (only 80, 443, and user-specified ports allowed) |\n2026-08-19T00:44:27.5035977Z | deny-connect-unsafe-ports | 🚫 deny | 0 | Deny CONNECT (HTTPS) to ports not in Safe_ports ACL |\n2026-08-19T00:44:27.5036664Z | allow-api-proxy-ip | ✅ allow | 0 | Allow connections to the AWF api-proxy sidecar IP before raw-IP deny rules |\n2026-08-19T00:44:27.5037446Z | allow-from-api-proxy | ✅ allow | 0 | Allow unrestricted outbound from api-proxy sidecar (trusted AWF component, not subject to agent domain ACL) |\n2026-08-19T00:44:27.5038218Z | deny-raw-ipv4 | 🚫 deny | 0 | Deny requests to raw IPv4 addresses (bypasses domain filtering) |\n2026-08-19T00:44:27.5038805Z | deny-raw-ipv6 | 🚫 deny | 0 | Deny requests to raw IPv6 addresses (bypasses domain filtering) |\n2026-08-19T00:44:27.5039347Z | allow-both-plain | ✅ allow | 0 | Allow HTTP and HTTPS traffic to these domains |\n2026-08-19T00:44:27.5040121Z | deny-default | 🚫 deny | 0 | Deny all traffic not matching any allow rule (default deny) |\n2026-08-19T00:44:27.5040406Z \n2026-08-19T00:44:27.5040483Z </details>\n2026-08-19T00:44:27.5040577Z \n2026-08-19T00:44:27.5040661Z </details>\n2026-08-19T00:44:27.5040745Z","is_error":false}]},"parent_tool_use_id":null,"session_id":"473d5dd5-241d-45e0-93e6-a28aab73a425","uuid":"52071991-9c11-4102-b081-9626d5018b4d","timestamp":"2026-08-19T01:18:45.936Z","tool_use_result":{"stdout":"obe failed with exit code 4 (stderr: Connection to 172.30.0.10 3128 port [tcp/*] succeeded!; guest network state: 1: lo: <LOOPBACK> mtu 65536 qdisc noop state DOWN group default qlen 1000\n2026-08-19T00:44:23.3486320Z link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00\n2026-08-19T00:44:23.3487240Z 2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000\n2026-08-19T00:44:23.3487729Z link/ether 02:9a:e8:e0:12:bb brd ff:ff:ff:ff:ff:ff\n2026-08-19T00:44:23.3487989Z inet 100.103.56.158/30 scope global eth0\n2026-08-19T00:44:23.3488233Z valid_lft forever preferred_lft forever\n2026-08-19T00:44:23.3488467Z ---\n2026-08-19T00:44:23.3488632Z default via 100.103.56.157 dev eth0 \n2026-08-19T00:44:23.3489183Z 100.103.56.156/30 dev eth0 proto kernel scope link src 100.103.56.158 \n2026-08-19T00:44:23.3489456Z ---\n2026-08-19T00:44:23.3489730Z 100.103.56.157 dev eth0 lladdr 5a:dc:e1:f1:8e:3a REACHABLE)\n2026-08-19T00:44:23.3490177Z at Tp.probeGuestConnectivity (/usr/local/lib/awf/awf-bundle.js:889:24235)\n2026-08-19T00:44:23.3490610Z at process.processTicksAndRejections (node:internal/process/task_queues:103:5)\n2026-08-19T00:44:23.3490997Z at async Tp.start (/usr/local/lib/awf/awf-bundle.js:889:19658)\n2026-08-19T00:44:23.3491322Z at async p4 (/usr/local/lib/awf/awf-bundle.js:850:2070)\n2026-08-19T00:44:23.3491651Z at async e.<anonymous> (/usr/local/lib/awf/awf-bundle.js:899:2982)\n2026-08-19T00:44:23.3492116Z [INFO] Stopping containers...\n2026-08-19T00:44:23.5121409Z Container awf-api-proxy Stopping\n2026-08-19T00:44:23.5121771Z Container awf-squid Stopping\n2026-08-19T00:44:24.6567072Z Container awf-squid
|
|
agent
Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"impact\": \"Workflow did not complete successfully and may need intervention\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"medium\",\n \"title\": \"Blocked Network Requests\",\n \"description\": \"1 network request(s) were blocked by firewall\",\n \"impact\": \"Blocked requests may indicate missing network permissions or unexpected behavior\"\n }\n]\n==== recommendations\n[\n {\n \"priority\": \"high\",\n \"action\": \"Review error logs to identify root cause of failure\",\n \"reason\": \"Understanding failure causes helps prevent recurrence\",\n \"example\": \"Check the errors field for specific error messages, or inspect the log files in logs_path\"\n },\n {\n \"priority\": \"medium\",\n \"action\": \"Add blocked domains to the workflow network allow-list\",\n \"reason\": \"Firewall-blocked domains prevent the agent from completing its tasks\",\n \"example\": \"Add allowed domains to network configuration or review firewall rules\"\n }\n]\n==== performance_metrics\n{\n \"network_requests\": 1\n}\n==== prompt_analysis\n{\n \"prompt_size\": 15280,\n \"prompt_file\": \"aw-prompts/prompt.txt\"\n}\n==== session_analysis\n{\n \"wall_time\": \"6.6m\",\n \"timeout_detected\": false\n}","is_error":false}]},"parent_tool_use_id":null,"session_id":"473d5dd5-241d-45e0-93e6-a28aab73a425","uuid":"c299e5e9-5c8e-4489-a85c-025306e80267","timestamp":"2026-08-19T01:18:17.582Z","tool_use_result":{"stdout":"==== overview\n{\n \"run_id\": 32202160142,\n \"workflow_name\": \"Daily Go Test Parallelizer\",\n \"status\": \"completed\",\n \"conclusion\": \"failure\",\n \"created_at\": \"2026-08-19T00:40:58Z\",\n \"started_at\": \"2026-08-19T00:40:58Z\",\n \"updated_at\": \"2026-08-19T00:47:33Z\",\n \"duration\": \"6.6m\",\n \"event\": \"schedule\",\n \"branch\": \"main\",\n \"url\": \"https://github.com/github/gh-aw/actions/runs/32202160142\",\n \"logs_path\": \"/tmp/gh-aw/aw-mcp/logs/run-32202160142\"\n}\n==== comparison\n{\n \"baseline_found\": true,\n \"baseline\": {\n \"run_id\": 32127668017,\n \"workflow_name\": \"Daily Go Test Parallelizer\",\n \"conclusion\": \"success\",\n \"created_at\": \"2026-08-18T10:37:29Z\",\n \"selection\": \"cohort_match\",\n \"matched_on\": [\n \"event\",\n \"task_domain\",\n \"execution_style\",\n \"actuation_style\",\n \"dispatch_mode\",\n \"tool_breadth\"\n ]\n },\n \"delta\": {\n \"turns\": {\n \"before\": 0,\n \"after\": 0,\n \"changed\": false\n },\n \"posture\": {\n \"before\": \"read_only\",\n \"after\": \"read_only\",\n \"changed\": false\n },\n \"blocked_requests\": {\n \"before\": 0,\n \"after\": 1,\n \"changed\": true\n }\n },\n \"classification\": {\n \"label\": \"risky\",\n \"reason_codes\": [\n \"blocked_requests_increase\",\n \"run_unsuccessful\"\n ]\n },\n \"recommendation\": {\n \"action\": \"Investigate failure; run concluded with errors before treating it as matching the selected successful baseline.\"\n }\n}\n==== behavior_fingerprint\n{\n \"execution_style\": \"directed\",\n \"tool_breadth\": \"narrow\",\n \"actuation_style\": \"read_only\",\n \"resource_profile\": \"moderate\",\n \"dispatch_mode\": \"standalone\",\n \"agentic_fraction\": 0\n}\n==== key_findings\n[\n {\n \"category\": \"error\",\n \"severity\": \"critical\",\n \"title\": \"Workflow Failed\",\n \"description\": \"Workflow 'Daily Go Test Parallelizer' failed with 2 error(s): ##[error]Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"impact\": \"Workflow did not complete successfully and may need intervention\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"medium\",\n \"title\": \"Blocked Network Requests\",\n \"description\": \"1 network request(s) were blocked by firewall\",\n \"impact\": \"Blocked requests may indicate missing netwo
|
|
agent
Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"file\": \"agent\"\n },\n {\n \"type\": \"step_failure\",\n \"message\": \"##[error]Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"file\": \"agent/Execute GitHub Copilot CLI\"\n }\n ]\n}\n\n[info] [agenticworkflows] Tool output: 75287 chars","is_error":false}]},"parent_tool_use_id":null,"session_id":"473d5dd5-241d-45e0-93e6-a28aab73a425","uuid":"bda599ee-a324-468f-a642-36c5696a1694","timestamp":"2026-08-19T01:18:06.155Z","tool_use_result":{"stdout":" \"quota_consumed\": 0,\n \"final_remaining\": 5000,\n \"limit\": 5000\n },\n {\n \"resource\": \"code_search\",\n \"requests_made\": 0,\n \"quota_consumed\": 0,\n \"final_remaining\": 10,\n \"limit\": 10\n },\n {\n \"resource\": \"source_import\",\n \"requests_made\": 0,\n \"quota_consumed\": 0,\n \"final_remaining\": 100,\n \"limit\": 100\n },\n {\n \"resource\": \"scim\",\n \"requests_made\": 0,\n \"quota_consumed\": 0,\n \"final_remaining\": 15000,\n \"limit\": 15000\n },\n {\n \"resource\": \"dependency_sbom\",\n \"requests_made\": 0,\n \"quota_consumed\": 0,\n \"final_remaining\": 200,\n \"limit\": 200\n }\n ]\n },\n \"firewall_analysis\": {\n \"total_requests\": 1,\n \"allowed_requests\": 0,\n \"blocked_requests\": 1,\n \"requests_by_domain\": {\n \"(unknown)\": {\n \"allowed\": 0,\n \"blocked\": 1\n }\n }\n },\n \"errors\": [\n {\n \"type\": \"step_failure\",\n \"message\": \"##[error]Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"file\": \"agent\"\n },\n {\n \"type\": \"step_failure\",\n \"message\": \"##[error]Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"file\": \"agent/Execute GitHub Copilot CLI\"\n }\n ]\n}\n\n[info] [agenticworkflows] Tool output: 75287 chars","stderr":"","interrupted":false,"isImage":false,"noOutputExpected":false}}
|
|
evals
Agent execution exited with code 1\\n##[error]Process completed with exit code 1.\",\n \"impact\": \"Workflow did not complete successfully and may need intervention\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"medium\",\n \"title\": \"Blocked Network Requests\",\n \"description\": \"1 network request(s) were blocked by firewall\",\n \"impact\": \"Blocked requests may indicate missing network permissions or unexpected behavior\"\n }\n ],\n \"recommendations\": [\n {\n \"priority\": \"high\",\n \"action\": \"Review error logs to identify root cause of failure\",\n \"reason\": \"Understanding failure causes helps prevent recurrence\",\n \"example\": \"Check the errors field for specific error messages, or inspect the log files in logs_path\"\n },\n {\n \"priority\": \"medium\",\n \"action\": \"Add blocked domains to the workflow network allow-list\",\n \"reason\": \"Firewall-blocked domains prevent the agent from completing its tasks\",\n \"example\": \"Add allowed domains to network configuration or review firewall rules\"\n }\n ],\n \"observability_insights\": [\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Directed execution path\",\n \"summary\": \"The run remained relatively linear with 0 turns and 0 tool types.\",\n \"evidence\": \"turns=0 tool_types=0\"\n },\n {\n \"category\": \"actuation\",\n \"severity\": \"info\",\n \"title\": \"Read-only posture observed\",\n \"summary\": \"The workflow stayed in an analysis posture and did not emit any GitHub write actions.\",\n \"evidence\": \"created_items=0 safe_items=0\"\n },\n {\n \"category\": \"network\",\n \"severity\": \"high\",\n \"title\": \"Network friction detected\",\n \"summary\": \"The firewall observed 1 request(s) with 1 blocked, for a 100% block rate.\",\n \"evidence\": \"blocked=1 total=1\"\n },\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Log template patterns mined\",\n \"summary\": \"Analysis identified 1 distinct event templates across 6 pipeline stages from 1 events.\",\n \"evidence\": \"finish=1\"\n },\n {\n \"category\": \"execution\",\n \"severity\": \"info\",\n \"title\": \"Agent stage sequence\",\n \"summary\": \"The observed pipeline stage sequence for this run.\",\n \"evidence\": \"finish\"\n }\n ],\n \"performance_metrics\": {\n \"network_requests\": 1\n },\n \"engine_config\": {\n \"engine_id\": \"copilot\",\n \"engine_name\": \"GitHub Copilot CLI\",\n \"model\": \"auto\",\n \"version\": \"1.0.80\",\n \"firewall_version\": \"v0.28.1\",\n \"trigger_event\": \"schedule\",\n \"repository\": \"github/gh-aw\"\n },\n \"prompt_analysis\": {\n \"prompt_size\": 15280,\n \"prompt_file\": \"aw-prompts/prompt.txt\"\n },\n \"session_analysis\": {\n \"wall_time\": \"6.6m\",\n \"timeout_detected\": false\n },\n \"jobs\": [\n {\n \"name\": \"pre_activation\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"duration\": \"18.0s\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Checkout actions folder\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Setup Scripts\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Check team membership for workflow\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Check skip-if-match query\",\n \"status\": \"completed\",\n \"conclusion\": \"success\"\n },\n {\n \"name\": \"Post Setup Scripts\",\n \"status\": \"comp
|
|
agent
Failed to scan directory /tmp/gh-aw/aw-mcp/logs/run-32202160142/usage: EACCES: permission denied, scandir '/tmp/gh-aw/aw-mcp/logs/run-32202160142/usage'
|
|
agent
Failed to scan directory /tmp/gh-aw/aw-mcp/logs/run-32193430210/usage: EACCES: permission denied, scandir '/tmp/gh-aw/aw-mcp/logs/run-32193430210/usage'
|
|
agent
Failed to scan directory /tmp/gh-aw/aw-mcp/logs/run-32183082829/usage: EACCES: permission denied, scandir '/tmp/gh-aw/aw-mcp/logs/run-32183082829/usage'
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
activation
Expired
|
9.14 MB |
sha256:4ae1082e89eda3599d1ae897fe54669376543fb0ad33ded2d0798bf37bfcab79
|
|
|
agent
|
579 KB |
sha256:dfdef1345d58f6ea936b75e68d72f60b44913ced138b5c39669d9245babf1c83
|
|
|
agent-output-fallback
|
1.99 KB |
sha256:1fe65502eef72dd21cf736656e437a061f05d56fccdb743ff911eed2c4b2c361
|
|
|
aic-usage-cache
|
497 Bytes |
sha256:2a47b9420ebcfd68716e95722d38f58fe91c4744601772e184e02109cbdd40e2
|
|
|
awfailureinvestigator-experiment
|
5.4 KB |
sha256:e2ae65b553577250fdd491b50e52c7155dd8771dec1f1e623ecedcc88c54f247
|
|
|
detection
|
233 Bytes |
sha256:9d4e1bda2f6c8e302b32c5745521bad2536a12f42645175b55b5584f32d30326
|
|
|
evals
|
389 Bytes |
sha256:beb6188759cdaf574055d2e58aa9a623fd29fff14caa60e01bf98acf9b7dd49e
|
|
|
github~gh-aw~IH0TSD.dockerbuild
|
24.9 KB |
sha256:7bbd40aa80ae862d716ef85374244cae015075b3001a0b36c90dd10df2b371b0
|
|
|
safe-outputs-items
|
301 Bytes |
sha256:85a73284e107c03bb0c7f161ae14866ee448f20ab85e4882335491b5b84098d8
|
|
|
usage
|
6.01 KB |
sha256:5dd1678c4fb943ac1fec61d87f966428e2b09407db390829c85d595f881c8e31
|
|