Add set-issue-field safe output with schema/compiler wiring and actionable field-value errors#30941
Add set-issue-field safe output with schema/compiler wiring and actionable field-value errors#30941
set-issue-field safe output with schema/compiler wiring and actionable field-value errors#30941Conversation
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ea8c22a1-67bb-4824-a89d-294f93ce8138 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
This reverts commit cf88faf. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ea8c22a1-67bb-4824-a89d-294f93ce8138 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
set-issue-field safe output with schema/compiler wiring and actionable field-value errors
|
Hey One item is still outstanding before this is ready for review:
Once those gates are green, this looks like it should be in great shape for maintainer review. Consider converting from Draft when all tasks are complete. If you'd like a hand finishing up, you can assign this prompt to your coding agent:
|
There was a problem hiding this comment.
Pull request overview
Adds a new set-issue-field safe output/tool that allows workflows to set a single GitHub issue field by name/value (or by field node ID), with compiler/schema/docs wiring so it can be enabled via safe-outputs.set-issue-field.
Changes:
- Introduces a new safe-output runtime handler
set_issue_field(with tests) and registers it in the safe-output handler manager and tool catalogs. - Extends workflow compiler/config/schema plumbing to parse
safe-outputs.set-issue-field, emit handler config, compute enabled tools, validatemax, derive permissions, and add repo-parameter support. - Updates documentation and TypeScript safe-output type definitions to include
set_issue_field.
Show a summary per file
| File | Description |
|---|---|
| pkg/workflow/unified_prompt_step.go | Adds set_issue_field to prompt tool budgeting when configured. |
| pkg/workflow/set_issue_field.go | Adds compiler-side config type and parser for set-issue-field. |
| pkg/workflow/safe_outputs_validation_config.go | Adds validation rules for set_issue_field safe-output items. |
| pkg/workflow/safe_outputs_tools_repo_params.go | Enables optional repo parameter behavior for set_issue_field based on safe-output targeting config. |
| pkg/workflow/safe_outputs_tools_computation.go | Enables tool name computation for set_issue_field. |
| pkg/workflow/safe_outputs_state.go | Adds SetIssueField into safe-output state mapping and enabled checks. |
| pkg/workflow/safe_outputs_permissions.go | Adds permissions derivation for set-issue-field (issues write). |
| pkg/workflow/safe_outputs_max_validation.go | Adds max validation for set_issue_field. |
| pkg/workflow/safe_outputs_config.go | Wires parsing/extraction of safe-outputs.set-issue-field into the compiler. |
| pkg/workflow/js/safe_outputs_tools.json | Adds set_issue_field tool definition to workflow JS tool catalog. |
| pkg/workflow/imports.go | Adds import conflict/type detection + merge behavior for set-issue-field. |
| pkg/workflow/compiler_types.go | Adds SetIssueField pointer to SafeOutputsConfig. |
| pkg/workflow/compiler_safe_outputs_handlers.go | Emits handler-manager config for set_issue_field. |
| pkg/workflow/compiler_safe_outputs_config_test.go | Adds coverage to ensure handler config is emitted for set_issue_field. |
| pkg/parser/schemas/main_workflow_schema.json | Adds frontmatter schema support + comment list entry for safe-outputs.set-issue-field. |
| docs/src/content/docs/reference/safe-outputs.md | Documents set-issue-field safe output and example configuration. |
| docs/src/content/docs/reference/glossary.md | Adds glossary entry describing set-issue-field. |
| actions/setup/js/types/safe-outputs.d.ts | Adds SetIssueFieldItem to safe-output TS types/exports. |
| actions/setup/js/set_issue_field.test.cjs | Adds vitest coverage for set_issue_field handler behavior and errors. |
| actions/setup/js/set_issue_field.cjs | Implements set_issue_field runtime handler (field discovery + typed updates). |
| actions/setup/js/safe_outputs_tools.json | Adds set_issue_field tool definition to actions runtime tool catalog. |
| actions/setup/js/safe_output_handler_manager.cjs | Registers set_issue_field handler module in the handler manager map. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 21/22 changed files
- Comments generated: 3
|
|
||
| if (fieldName || !fieldNodeId) { | ||
| const availableFields = await fetchIssueFields(githubClient, owner, repo); | ||
|
|
||
| if (availableFields.length === 0 && !fieldNodeId) { | ||
| const error = "No issue fields were discovered for this repository. Verify issue fields are enabled, or provide field_node_id to skip field discovery."; | ||
| core.error(error); | ||
| return { success: false, error }; | ||
| } | ||
|
|
||
| if (fieldName) { | ||
| resolvedField = availableFields.find(field => field.name.toLowerCase() === fieldName.toLowerCase()) || null; | ||
|
|
||
| if (!resolvedField) { | ||
| const availableNames = availableFields.map(field => field.name).join(", "); | ||
| const error = `Issue field ${JSON.stringify(fieldName)} not found. Available fields: ${availableNames}. Use a listed field_name or provide field_node_id to bypass discovery.`; | ||
| core.error(error); | ||
| return { success: false, error }; | ||
| } | ||
|
|
||
| if (!fieldNodeId) { | ||
| fieldNodeId = resolvedField.id; | ||
| } | ||
| } else if (fieldNodeId) { | ||
| resolvedField = availableFields.find(field => field.id === fieldNodeId) || null; | ||
| } |
| "set_issue_field": { | ||
| DefaultMax: 5, | ||
| Fields: map[string]FieldValidation{ | ||
| "issue_number": {IssueOrPRNumber: true}, | ||
| "field_name": {Type: "string", Sanitize: true, MaxLength: 128}, | ||
| "field_node_id": {Type: "string", MaxLength: 256}, | ||
| "value": {Required: true, Type: "string", Sanitize: true, MaxLength: 256}, | ||
| "repo": {Type: "string", MaxLength: 256}, // Optional: target repository in format "owner/repo" | ||
| }, | ||
| }, |
| "MissingTool": "missing_tool", | ||
| "MissingData": "missing_data", | ||
| "SetIssueType": "set_issue_type", | ||
| "SetIssueField": "set_issue_field", | ||
| "NoOp": "noop", |
|
@copilot review all comments |
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ae7c7c7f-8a67-4047-a371-d8b1b1b170be Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
This reverts commit 72334f5. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ae7c7c7f-8a67-4047-a371-d8b1b1b170be Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ae7c7c7f-8a67-4047-a371-d8b1b1b170be Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Done — I reviewed and addressed the actionable review threads. Implemented in commit
Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
This introduces a focused
set-issue-fieldsafe output, analogous toset-issue-type, so workflows can set one issue field by name/value without routing throughupdate-issue. It also adds explicit failure messages for unknown field names and invalid field values.Safe output runtime: new
set_issue_fieldhandleractions/setup/js/set_issue_field.cjsand registered it insafe_output_handler_manager.cjs.issue_number,field_name,value, and optionalfield_node_id(to bypass discovery).field_name→ lists available fields and suggestsfield_node_idTool surface and type contracts
set_issue_fieldin both tool catalogs:actions/setup/js/safe_outputs_tools.jsonpkg/workflow/js/safe_outputs_tools.jsonactions/setup/js/types/safe-outputs.d.tswithSetIssueFieldItem.Compiler/config/schema integration
SetIssueFieldConfigparser (pkg/workflow/set_issue_field.go).max validation, permission derivation, imports merge, prompt tool budget,
repo-parameter derivation, and safe-output state mapping.
safe-outputs.set-issue-fieldinpkg/parser/schemas/main_workflow_schema.json.Docs updates
set-issue-fieldto safe-outputs reference and glossary:docs/src/content/docs/reference/safe-outputs.mddocs/src/content/docs/reference/glossary.mdExample usage
{"type":"set_issue_field","issue_number":123,"field_name":"Priority","value":"High"}Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
https://api.github.com/graphql/usr/bin/gh gh repo view --json owner,name --jq .owner.login + "/" + .name k GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet estl�� -json GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE ache/go/1.25.8/xTest User sRem�� se 7005060/b205/vet.cfg outil.test GOINSECURE GOMOD GOMODCACHE outil.test(http block)/usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE ache/go/1.25.8/xTest User env tsxp/nwkcN4PIguFYaXajtsxp GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/orgs/test-owner/actions/secrets/usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name ath ../../../.pr**/*.json git(http block)/usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name h ../../../.prettierignore git /usr/bin/gh --show-toplevel git /usr/bin/git gh api w/js/**/*.json' --ignore-path --jq sv --show-toplevel git /usr/bin/git git(http block)https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1/usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git -bool -buildtags /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git runs/20260508-05gh Test User /usr/bin/git git(http block)/usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linu4 /usr/bin/git 14 git /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel /opt/hostedtoolcache/go/1.25.8/xowner/repo /usr/bin/git -bool -buildtags 8877346/b480/vet/repos/actions/github-script/git/ref/tags/v9 git(http block)/usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel sh /usr/bin/git 629271772/001 git /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel /opt/hostedtoolcache/go/1.25.8/xowner/repo /usr/bin/git -bool -buildtags /usr/bin/git git(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v3/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --git-dir x_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 ^remote\..*\.gh-resolved$ sv git status --porgh git bin/node git conf�� --get remote.origin.url /usr/bin/git te '../../../**/git /usr/lib/git-correv-parse n-dir/node /usr/bin/git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 x_amd64/vet sv 01 infocmp tions/setup/node/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v5/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv orts2529949959/001/main.md -buildtags 7005060/b321/vet.cfg -errorsas -ifaceassert -nilfunc /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -uns�� /actions/secrets /tmp/go-build3967005060/b259/vet.cfg ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 gh bject.type] | @tsv /repos/actions/ggit --jq(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v6/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --show-toplevel -tests ache/node/24.14.1/x64/bin/node -json GO111MODULE 64/bin/go infocmp t-37�� k/gh-aw/gh-aw/.github/workflows/agent-persona-explorer.md go /usr/bin/git -json GO111MODULE 64/bin/go git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv ErrorFormatting1252902407/001 config /usr/bin/git l GO111MODULE 64/bin/go git -C runs/20260508-052314-32485/test-601284319 config /usr/bin/git remote.origin.urgit GO111MODULE x_amd64/vet git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv waysRecompiles1983307904/001 resolved$ /usr/bin/git -json GO111MODULE x_amd64/vet git remo�� GOMODCACHE HjoE8hqd2SJr /usr/bin/git -json GO111MODULE x_amd64/vet git(http block)https://api.github.com/repos/actions/github-script/git/ref/tags/v8/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv xterm-color git /usr/bin/git --show-toplevel x_amd64/vet /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp /ref/tags/v9 remote.origin.urrev-parse sv infocmp(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel infocmp /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/git --get remote.origin.urapi 0088389/b405/cli/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel 0088389/b405/cli.test /usr/bin/gh /tmp/gh-aw-test-git rev-parse /usr/bin/git gh(http block)https://api.github.com/repos/actions/github-script/git/ref/tags/v9/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv .github/workflows GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)https://api.github.com/repos/actions/github-script/git/ref/tags/v9.0.0/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE So_z10iwA5KW env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)https://api.github.com/repos/actions/setup-go/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build3967005060/b111/vet.cfg /usr/bin/git 2314-32485/test-gh /tmp/go-build396api 1/x64/bin/node git rev-�� --show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git ithub/workflows/git /tmp/go-build396rev-parse /opt/hostedtoolc--show-toplevel git(http block)/usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linuTest User /usr/bin/infocmp --show-toplevel git .cfg infocmp -1 xterm-color sh /usr/bin/git "prettier" --wrigit git 1/x64/bin/node git(http block)/usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel 0088389/b070/gh-aw.test /usr/bin/git 2352488756 git sv git rev-�� --show-toplevel sh /usr/bin/git "prettier" --wrigit sed ache/node/24.14.--show-toplevel git(http block)https://api.github.com/repos/actions/setup-node/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv GOMODCACHE x_amd64/vet /usr/bin/git -json GO111MODULE status, conclusi--show-toplevel git -C /tmp/gh-aw-test-runs/20260508-052314-32485/test-601284319 status /usr/bin/git .github/workflowgit .cfg 64/pkg/tool/linu--show-toplevel git(http block)/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv etup-node/git/ref/tags/v6 /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build3967005060/b112/vet.cfg bject.type] | @tsv 2314-32485/test-git /tmp/go-build396rev-parse 1/x64/bin/node gh api /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/git ithub/workflows/git g/stringutil/iderev-parse ache/go/1.25.8/x--show-toplevel git(http block)/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel(http block)https://api.github.com/repos/actions/setup-node/git/ref/tags/v6/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv runs/20260508-052314-32485/test-2195957578 rev-parse ache/node/24.14.1/x64/bin/node -json GO111MODULE 64/bin/go 7005060/b452/imp--jq t-19�� k/gh-aw/gh-aw/.github/workflows/ai-moderator.md k/gh-aw/gh-aw/pkg/stringutil/identifiers.go /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/compile -json GO111MODULE 64/bin/go /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linu3(http block)/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/gh -json GO111MODULE x_amd64/compile gh api s/test.md --jq /usr/bin/git -json GO111MODULE x_amd64/vet git(http block)/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv waysRecompiles1983307904/001 x_amd64/vet /usr/bin/git -json GO111MODULE x_amd64/vet git conf�� --get remote.origin.url om/testorg/testrepo.git -json GO111MODULE x_amd64/vet /opt/hostedtoolcache/node/24.14.1/x64/bin/node(http block)https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel x_amd64/vet /opt/hostedtoolcache/node/24.14.1/x64/bin/node -json GO111MODULE x_amd64/vet /opt/hostedtoolcache/node/24.14.1/x64/bin/node /tmp�� REDACTED.os x_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel(http block)/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel x_amd64/compile /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git .cfg tmatter-with-arrgit git sv git(http block)https://api.github.com/repos/aws-actions/configure-aws-credentials/git/ref/tags/v4/usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git GOMODCACHE go /usr/bin/gh git rev-�� --show-toplevel gh /usr/bin/git /repos/actions/ggh --jq /usr/bin/git git(http block)/usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/gh user.email s/1/artifacts ache/node/24.14./repos/actions/github-script/git/ref/tags/v9 gh api /repos/actions/setup-node/git/ref/tags/v6 --jq /usr/bin/gh waysRecompiles19git x_amd64/vet /usr/bin/git gh(http block)/usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/gh /usr/bin/git git om/org1/repo1.gistatus gh(http block)https://api.github.com/repos/azure/login/git/ref/tags/v2/usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel infocmp /usr/bin/git xterm-color(http block)/usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git bject.type] | @tsv /tmp/TestGuardPogit config repository(owne--show-toplevel git rev-�� --show-toplevel infocmp /usr/bin/infocmp xterm-color git /usr/bin/git infocmp(http block)/usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git /tmp/gh-aw-test-git remote /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel node /usr/bin/infocmp /home/REDACTED/worinfocmp(http block)https://api.github.com/repos/docker/login-action/git/ref/tags/v3/usr/bin/gh gh api /repos/docker/login-action/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/node/24.14.1/x64/bin/node /usr/bin/git uts.enforce_all git --jq /usr/bin/git git rev-�� /ref/tags/v9 git sv --show-toplevel x_amd64/vet /usr/bin/git infocmp(http block)/usr/bin/gh gh api /repos/docker/login-action/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel e/git /usr/bin/git /tmp/TestHashCongit git /usr/bin/gh git rev-�� /ref/tags/v9 gh sv /repos/actions/ginfocmp --jq /usr/bin/git infocmp(http block)/usr/bin/gh gh api /repos/docker/login-action/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git /tmp/gh-aw-test-git(http block)https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v0.1.2/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 /opt/hostedtoolcconfig sv runs/20260508-05infocmp /tmp/go-build396-1 kflows/my-workflxterm-color gh api /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/git '/tmp/TestParseDinfocmp '/tmp/TestParseD-1 /opt/hostedtoolcxterm-color git(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/infocmp 402645157 infocmp /opt/hostedtoolc--show-toplevel infocmp -1 xterm-color npx /usr/bin/git --write **/*.cjs 1/x64/bin/node git(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel bash /usr/bin/git 2352488756 git 1/x64/bin/node git rev-�� --show-toplevel 1/x64/bin/node /usr/bin/git sistency_GoAndJainfocmp du /node_modules/.bxterm-color git(http block)https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel x_amd64/vet /usr/lib/git-core/git -json GO111MODULE x_amd64/vet /usr/lib/git-core/git main�� run resolved$ /usr/bin/git --detach GO111MODULE 64/pkg/tool/linu--show-toplevel git(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/archie.md infocmp(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel git(http block)https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 Test User sv -json GO111MODULE At,event,headBra--show-toplevel git conf�� /ref/tags/v9 Test User sv -json GO111MODULE 64/pkg/tool/linu--show-toplevel git(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9(http block)/usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 git sv 1398217664 git /usr/bin/git git rev-�� /ref/tags/v9 git sv th .prettierignogit git /usr/bin/git git(http block)https://api.github.com/repos/github/gh-aw/actions/runs/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created >=2026-05-01 GOMOD GOMODCACHE 64/pkg/tool/linuremote.origin.url env -json .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linuInitial commit(http block)/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created >=2026-04-08 GOMOD GOMODCACHE 64/pkg/tool/linuTest User env -json .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created >=2026-02-07 GOMOD GOMODCACHE 64/pkg/tool/linu-extld=gcc env LsRemoteWithRealGitcustom_branch547820904/001' LsRemoteWithRealGitcustom_branch547820904/001' 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh run download 1 --dir test-logs/run-1 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build3967005060/b112/vet.cfg(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name pkg/workflow/script_registry.go 64/pkg/tool/linux_amd64/vet pkg/workflow/scrgit pkg/workflow/seainit pkg/workflow/secret_extraction.g/tmp/gh-aw-test-runs/20260508-053428-45979/test-1227436001/custom/workflows 64/pkg/tool/linux_amd64/vet -c "prettier" --write 'scripts/**/*remote.origin.url pkg/workflow/secret_validation_test.go cal/bin/node pkg/workflow/secgit pkg/workflow/secconfig pkg/workflow/secuser.email sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuremote.origin.url(http block)/usr/bin/gh gh run download 12345 --dir test-logs/run-12345 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linu-nilfunc GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu--jq estl�� se 7005060/b065/vet.cfg ck GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/xremote.origin.url(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name test.cjs /home/REDACTED/work/node_modules/.bin/node xterm-color git /usr/bin/git node /hom�� b/workflows **/*.cjs tnet/tools/sh ignore --ignore-path ../../../.prettierignore sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/1234567890/usr/bin/gh gh api repos/{owner}/{repo}/actions/runs/1234567890 --jq {databaseId: .id, number: .run_number, url: .html_url, status: .status, conclusion: .conclusion, workflowName: .name, workflowPath: .path, createdAt: .created_at, startedAt: .run_started_at, updatedAt: .updated_at, event: .event, headBranch: .head_branch, -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile(http block)/usr/bin/gh gh api repos/{owner}/{repo}/actions/runs/1234567890 --jq {databaseId: .id, number: .run_number, url: .html_url, status: .status, conclusion: .conclusion, workflowName: .name, workflowPath: .path, createdAt: .created_at, startedAt: .run_started_at, updatedAt: .updated_at, event: .event, headBranch: .head_branch, ../pkg/workflow/js/**/*.json' --ignore-path ../../../.prettierignore infocmp(http block)/usr/bin/gh gh api repos/{owner}/{repo}/actions/runs/1234567890 --jq {databaseId: .id, number: .run_number, url: .html_url, status: .status, conclusion: .conclusion, workflowName: .name, workflowPath: .path, createdAt: .created_at, startedAt: .run_started_at, updatedAt: .updated_at, event: .event, headBranch: .head_branch, h ../../../.pret.prettierignore infocmp /usr/bin/git /ref/tags/v9 docker sv git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/infocmpuser.name git(http block)https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name GO111MODULE .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh run download 12346 --dir test-logs/run-12346 GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name test.cjs 64/bin/go -n1 --format=format:run ode-gyp-bin/sh node /hom�� --write **/*.cjs sh ignore --ignore-path ../../../.prettiuser.name sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet estl�� se 7005060/b085/vet.cfg .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/xTest User(http block)/usr/bin/gh gh run download 2 --dir test-logs/run-2 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build3967005060/b111/vet.cfg(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name actions/setup/js/node_modules/flatted/golang/pkg../../../.prettierignore 64/pkg/tool/linux_amd64/compile cmd/gh-aw/capita/usr/bin/git cmd/gh-aw/commanremote cmd/gh-aw/format-v 64/pkg/tool/linux_amd64/compile -c g_.a cmd/gh-aw/main_help_text_test.go k/_temp/uv-python-dir/node cmd/gh-aw/versiogit internal/tools/aremote internal/tools/gadd sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name .cfg ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linurev-parse(http block)/usr/bin/gh gh run download 3 --dir test-logs/run-3 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet env 2195957578 GO111MODULE .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name pkg/workflow/call_workflow_test.go 64/pkg/tool/linux_amd64/vet pkg/workflow/cal/usr/bin/git pkg/workflow/camconfig pkg/workflow/che--get-regexp 64/pkg/tool/linu^remote\..*\.gh-resolved$ -c "prettier" --write 'scripts/**/*.js' --ignore-path .prettierignore --log-level=e!../../../pkg/wogit pkg/workflow/checkout_manager_test.go ck pkg/workflow/chegit pkg/workflow/checonfig pkg/workflow/cheuser.name sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name .cfg nutil.test GOINSECURE GOMOD GOMODCACHE nutil.test 9670�� 6746/001/stability-test.md GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuTest User(http block)/usr/bin/gh gh run download 4 --dir test-logs/run-4 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name gh 64/pkg/tool/linux_amd64/compile /repos/actions/ggit --jq /usr/bin/infocmpuser.name 64/pkg/tool/linuTest User -c g_.a infocmp bin/node nore git msg sh(http block)https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/compile(http block)/usr/bin/gh gh run download 5 --dir test-logs/run-5 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linu-buildmode=exe GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu--json env 01/main.md GO111MODULE .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name 53 64/pkg/tool/linux_amd64/link ACCEPT git(http block)https://api.github.com/repos/github/gh-aw/actions/workflows/usr/bin/gh gh workflow list --json name,state,path -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 100 GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 6 GOMOD GOMODCACHE ache/go/1.25.8/xremote.origin.url env thub/workflows GO111MODULE .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md/tmp/go-build3967005060/b405/cli.test /tmp/go-build3967005060/b405/cli.test -test.testlogfile=/tmp/go-build3967005060/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go(http block)/tmp/go-build1508877346/b405/cli.test /tmp/go-build1508877346/b405/cli.test -test.testlogfile=/tmp/go-build1508877346/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true --show-toplevel /usr/bin/git /usr/bin/gh git rev-�� ./../pkg/workflo0 gh -output ithub-script/gitsh --jq(http block)/tmp/go-build2260088389/b405/cli.test /tmp/go-build2260088389/b405/cli.test -test.testlogfile=/tmp/go-build2260088389/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp --show-toplevel infocmp /usr/bin/git infocmp(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v0.47.4/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git /tmp/gh-aw-test-du l 64/pkg/tool/linu/tmp/gh-aw/aw-feature-branch.patch git rev-�� --show-toplevel 64/pkg/tool/linux_amd64/link /usr/local/bin/iptables kflow.test(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel ps /usr/bin/git git gh /opt/hostedtoolc/tmp/gh-aw/aw-feature-branch.patch git rev-�� --show-toplevel node /usr/bin/git /home/REDACTED/worgit x_amd64/compile /usr/bin/git git(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git ub/gh-aw.git git docker-buildx git rev-�� --show-toplevel docker-buildx /usr/bin/git --get-regexp ^remote\..*\.gh-rev-parse /usr/bin/git git(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv DefaultBranchFromLsRemoteWithRealGitmaster_branch4066289985/001' DefaultBranchFromLsRemoteWithRealGitmaster_branch4066289985/001' ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuInitial commit env 7005060/b395/embedcfg GO111MODULE 64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/compile(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv rite '**/*.cjs' '**/*.ts' '**/*.json' --ignore-p--thin gh tnet/tools/sh rror --jq bject.type] | @t-v sh -c 3428-45979/test-1487775330/.github/workflows gh k/gh-aw/node_modules/.bin/node /repos/actions/ggit --jq /usr/bin/git git(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv 3715-58403/test-add-source-path-1398217664/.github/workflows infocmp 1/x64/bin/node xterm-color git(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv */*.json' '!../../../pkg/workflow/js/**/*.json' --ignore-path --jq ode_modules/.bin/node xterm-color git /usr/bin/git gh ode_�� /repos/actions/g-errorsas --jq ode_modules/.bin-nilfunc nore gh /usr/bin/infocmpxterm-color gh(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv xterm-color git /usr/bin/git ithub-script/gitgit git bject.type] | @t/tmp/gh-aw-test-runs/20260508-053715-58403/test-3866447327/.github/workflows git rev-�� th .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json git ode_modules/.bin/prettier --show-toplevel git /usr/bin/git git(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env ub/workflows GO111MODULE x_amd64/link GOINSECURE GOMOD GOMODCACHE x_amd64/link(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv iant-2798137914 infocmp sh /ref/tags/v9 git sv gh ode_�� /repos/actions/g-errorsas --jq 64/bin/node nore(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env ub/workflows GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv */*.json' '!../.--thin c ndor/bin/bash xterm-color git /usr/bin/gh gh phen�� /repos/actions/g-errorsas --jq n-dir/bash nore --jq /usr/bin/git infocmp(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv json' --ignore-p--detach git sv ithub-script/gitgit git bject.type] | @t/tmp/gh-aw-test-runs/20260508-053715-58403/test-214133472/.github/workflows git rev-�� th .prettierignore --log-level=error git x86_64/bash --show-toplevel git(http block)https://api.github.com/repos/google-github-actions/auth/git/ref/tags/v2/usr/bin/gh gh api /repos/google-github-actions/auth/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git GOMODCACHE go /usr/bin/git git rev-�� --show-toplevel git /usr/bin/gh ansitiveImports2git x_amd64/vet /usr/bin/git gh(http block)/usr/bin/gh gh api /repos/google-github-actions/auth/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git bject.type] | @tsv --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git thImports2849106git show /usr/bin/git git(http block)/usr/bin/gh gh api /repos/google-github-actions/auth/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git ithub-script/gitgit infocmp clusion,workflow--show-toplevel git rev-�� --show-toplevel git /usr/bin/git thImports1650702git l /opt/hostedtoolc--show-toplevel git(http block)https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999/usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv tsxp/nwkcN4PIguFYaXajtsxp GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet 7005�� 2314-32485/test-150536253/.github/workflows 7005060/b396/_testmain.go 64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/compile(http block)/usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv rite '**/*.cjs' '**/*.ts' '**/*.json' --ignore-p--exclude-hidden=receive git h rror git ode-gyp-bin/sh sh -c te 'scripts/**/*.js' --ignore-path .prettierignoremote.origin.url git e_modules/.bin/node --show-toplevel git /usr/bin/infocmpxterm-color git(http block)/usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv 3715-58403/test-add-source-path-1398217664/.github/workflows gh 1/x64/bin/node /repos/actions/ggit --jq /usr/bin/git git t-ha�� vaScript1874646751/001/test-inlined-imports-enabled-with-env-template-expressions-in-body.md git k/gh-aw/gh-aw/actions/node_modules/.bin/node --show-toplevel git(http block)https://api.github.com/repos/nonexistent/repo/actions/runs/12345/usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu--jq(http block)/usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion ithub-script/gitgit git(http block)/usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion --show-toplevel infocmp /usr/bin/infocmp--show-toplevel git rev-�� archie.md rsion=27ba581-dirty k/gh-aw/gh-aw/actions/node_modules/.bin/node xterm-color git /usr/bin/git infocmp(http block)https://api.github.com/repos/owner/repo/actions/workflows/usr/bin/gh gh workflow list --json name,state,path --repo owner/repo 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh workflow list --repo owner/repo --json name,path,state .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh workflow list --json name,state,path --repo owner/repo 64/pkg/tool/linu-importcfg /repos/actions/gsh 22a1-67bb-4824-a-c /usr/bin/git 64/pkg/tool/linux_amd64/asm er --show-toplevel git 1/x64/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node --show-toplevel git /usr/bin/git git(http block)https://api.github.com/repos/test-owner/test-repo/actions/secrets/usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)/usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name ath ../../../.pr**/*.json git es/.bin/node --show-toplevel /opt/hostedtoolc-c /usr/bin/infocmp"prettier" --write '../../../**/*.json' '!../../../pkg/workflow/js/**/*.json' ---errorsas git er --show-toplevel infocmp tions/setup/node_modules/.bin/node /ref/tags/v9 git sv git(http block)/usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� w/js/**/*.json' --ignore-path git /usr/bin/git --show-toplevel git(http block)https://api.github.com/repos/test/repo/usr/bin/gh gh api /repos/test/repo --jq .default_branch 1715485744/.github/workflows 7005060/b093/vet.cfg $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet ortc�� 2314-32485/test-3866483794/.github/workflows stmain.go 1/x64/bin/node GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/link(http block)/usr/bin/gh gh api /repos/test/repo --jq .default_branch 3428-45979/test-source-field-variant-2798137914 gh $name) { hasDiscussionsEnabled } } ithub-script/gitgit --jq bject.type] | @t--show-toplevel bash k/gh�� --noprofile git k/gh-aw/node_modules/.bin/sh ignore-path ../.git git erignore node(http block)/usr/bin/gh gh api /repos/test/repo --jq .default_branch 1992919310 --jq $name) { hasDiscussionsEnabled } } --show-toplevel git ode-gyp-bin/sh git k/gh�� --show-toplevel git k/gh-aw/gh-aw/actions/setup/js/node_modules/.bin/sh --show-toplevel gh erignore bash(http block)If you need me to access, download, or install something from one of these locations, you can either: