Skip to content

Add set-issue-field safe output with allowed-fields constraints, schema/compiler wiring, actionable field-value errors, and smoke-codex coverage#30941

Merged
pelikhan merged 16 commits intomainfrom
copilot/add-set-issue-field-safe-output
May 8, 2026
Merged

Add set-issue-field safe output with allowed-fields constraints, schema/compiler wiring, actionable field-value errors, and smoke-codex coverage#30941
pelikhan merged 16 commits intomainfrom
copilot/add-set-issue-field-safe-output

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 8, 2026

This introduces a focused set-issue-field safe output, analogous to set-issue-type, so workflows can set one issue field by name/value without routing through update-issue. It also adds explicit failure messages for unknown field names and invalid field values.

  • Safe output runtime: new set_issue_field handler

    • Added actions/setup/js/set_issue_field.cjs and registered it in safe_output_handler_manager.cjs.
    • Supports issue_number, field_name, value, and optional field_node_id (to bypass discovery).
    • Resolves target issue/repo using existing safe-output targeting + temporary ID patterns.
    • Discovers issue fields when needed and applies typed updates (text/number/date/single-select) via GraphQL.
    • Returns actionable errors:
      • unknown field_name → lists available fields and suggests field_node_id
      • invalid value for typed/select fields → lists expected format/options
  • Allowed-fields support for set-issue-field

    • Added allowed-fields configuration to safe-outputs.set-issue-field (including ["*"] wildcard semantics) to mirror create-issue behavior.
    • Enforced allowlist checks in set_issue_field runtime before applying updates.
    • Wired allowed_fields into handler config emission and schema/docs for set-issue-field.
    • Added tool-description constraint output for set_issue_field when allowed-fields is configured.
  • Refactor: shared issue-field allowlist helpers

    • Added actions/setup/js/allowed_issue_fields.cjs with shared parsing/validation helpers.
    • Updated both create_issue.cjs and set_issue_field.cjs to use shared allowlist logic.
  • Tool surface and type contracts

    • Registered set_issue_field in both tool catalogs:
      • actions/setup/js/safe_outputs_tools.json
      • pkg/workflow/js/safe_outputs_tools.json
    • Extended safe-output TS definitions in actions/setup/js/types/safe-outputs.d.ts with SetIssueFieldItem.
  • Compiler/config/schema integration

    • Added SetIssueFieldConfig parser (pkg/workflow/set_issue_field.go).
    • Wired new config through safe-output compiler paths:
      • config extraction, handler config emission, enabled-tool computation,
        max validation, permission derivation, imports merge, prompt tool budget,
        repo-parameter derivation, and safe-output state mapping.
    • Added frontmatter schema support for safe-outputs.set-issue-field in pkg/parser/schemas/main_workflow_schema.json.
  • Smoke workflow adoption (smoke-codex)

    • Updated .github/workflows/smoke-codex.md to enable safe-outputs.set-issue-field.
    • Added an explicit smoke test step that exercises set_issue_field exactly once on the created issue using a type-compatible field/value pair.
    • Recompiled lockfiles after workflow updates.
  • Docs updates

    • Added set-issue-field to safe-outputs reference and glossary:
      • docs/src/content/docs/reference/safe-outputs.md
      • docs/src/content/docs/reference/glossary.md
  • Example usage

    safe-outputs:
      set-issue-field:
        max: 5
        allowed-fields: [Priority, Iteration]
        target: "triggering"
        target-repo: "owner/repo"
        allowed-repos: ["owner/repo2"]
    {"type":"set_issue_field","issue_number":123,"field_name":"Priority","value":"High"}

[!WARNING]

Copilot AI and others added 3 commits May 8, 2026 05:27
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>
Copilot AI changed the title [WIP] Introduce set-issue-field safe output tool Add set-issue-field safe output with schema/compiler wiring and actionable field-value errors May 8, 2026
Copilot AI requested a review from pelikhan May 8, 2026 05:41
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 8, 2026

Hey @copilot-swe-agent 👋 — great work driving the set-issue-field safe output tool forward! The implementation scope looks well-structured, and the task checklist shows solid coverage: baseline validation, JS handler implementation, unit tests, schema/Go plumbing, and docs updates are all checked off.

One item is still outstanding before this is ready for review:

  • Complete the security/quality gates — the secret_scanning and parallel_validation checks are unchecked. These are required checkpoints before the PR can move out of WIP/draft status.

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:

Complete the remaining checklist item in PR #30941 for the `set-issue-field` safe output tool:
1. Run `secret_scanning` to verify no secrets are present in the diff.
2. Run `parallel_validation` and address any findings.
3. Once both gates pass, mark the task as complete in the PR body and convert the PR from Draft to Ready for Review.

Generated by Contribution Check · ● 6M ·

@pelikhan pelikhan marked this pull request as ready for review May 8, 2026 05:58
Copilot AI review requested due to automatic review settings May 8, 2026 05:58
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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, validate max, 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

Comment thread actions/setup/js/set_issue_field.cjs Outdated
Comment on lines +320 to +345

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;
}
Comment on lines +129 to +138
"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"
},
},
Comment on lines 65 to 69
"MissingTool": "missing_tool",
"MissingData": "missing_data",
"SetIssueType": "set_issue_type",
"SetIssueField": "set_issue_field",
"NoOp": "noop",
@pelikhan
Copy link
Copy Markdown
Collaborator

pelikhan commented May 8, 2026

@copilot review all comments

Copilot AI and others added 4 commits May 8, 2026 06:11
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>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 8, 2026

@copilot review all comments

Done — I reviewed and addressed the actionable review threads.

Implemented in commit 6b75dbe (plus follow-up cleanup in 9c66182):

  • set_issue_field now resolves metadata by field_node_id so typed fields use the correct payloads.
  • Added validation requiring one of field_name or field_node_id.
  • Added SetIssueField to consolidated handler-manager gating in compiler_safe_outputs_job.go.
  • Added/updated targeted JS and Go tests for these paths.

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
    • Triggering command: /usr/bin/gh gh repo view --json owner,name --jq .owner.login &#43; &#34;/&#34; &#43; .name /home/REDACTED/.config/composer/vendor/bin/sh ./../.prettieriggit (http block)
    • Triggering command: /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 -aw/sessions/ae7init (http block)
    • Triggering command: /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 -buildid=7gKTHMgconfig -s npx t-ha�� vaScript4284072115/001/test-empty-frontmatter.md scripts/**/*.js 1/x64/bin/node .prettierignore --log-level=erroapi (http block)
  • https://api.github.com/orgs/test-owner/actions/secrets
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name -template-expressions.md (http block)
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name h ../../../.pret--log-level=error git bject.type] | @tsv --show-toplevel infocmp k git rev-�� w/js/**/*.json&#39; --ignore-path gh 64/pkg/tool/linux_amd64/cgo /repos/actions/ggit --jq /usr/bin/git 64/pkg/tool/linux_amd64/cgo (http block)
  • https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1
    • Triggering command: /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 npx prettier --wgit (http block)
    • Triggering command: /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 npx prettier --wgit gh /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel /opt/hostedtoolcache/go/1.25.8/x--json /usr/bin/git -bool -buildtags /opt/hostedtoolc/repos/actions/github-script/git/ref/tags/v9 git (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v3
    • Triggering command: /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 committer.email 1/x64/lib/node_m/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel git /usr/bin/gh FzKnsvOR9 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 gh bject.type] | @tsv cjs --jq ache/node/24.14./repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel epo}/actions/runs/4/artifacts /usr/bin/gh e fix: address setrev-parse k/gh-aw/gh-aw/ac--show-toplevel gh (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v5
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --noprofile _job_test.go 1/x64/bin/node ./../.prettieriggit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git origin develop /usr/bin/infocmp--show-toplevel git rev-�� --show-toplevel infocmp /usr/bin/git xterm-color (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/infocmp --show-toplevel node /usr/bin/git infocmp -1 /ref/tags/v9 git sv --show-toplevel ache/go/1.25.8/xrev-parse /usr/bin/git gh (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv -bool -buildtags /usr/bin/git -errorsas -ifaceassert -nilfunc git add . resolved$ /usr/bin/git on&#39; --ignore-patgit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv /tmp/TestHashStability_SameInputSameOutput276873.artifacts[].name (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv /repos/actions/github-script/git/ref/tags/v9 --jq r,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,disp--show-toplevel get --global bin/sh git rev-�� --show-toplevel l /usr/bin/git .js&#39; --ignore-pagit --local rgo/bin/git git (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v8
    • Triggering command: /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 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel docker /usr/bin/git test/concurrent-gh gh 0&#34;}} git rev-�� --show-toplevel git /usr/bin/git ithub-script/gitgit test@example.comrev-parse bject.type] | @t--show-toplevel git (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv json&#39; --ignore-path ../../../.pr**/*.json (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv s/data/action_pins.json and pkg/workflow/data/action_pins.json...&#34; (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9.0.0
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv json&#39; --ignore-path ../../../.pr**/*.json (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv js/**/*.json&#39; ---errorsas (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /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/linux_amd64/vet /usr/bin/gh --noprofile (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git /ref/tags/v9.0.0gh set_issue_field.api sv git -C ithub-script/git/ref/tags/v9 rev-parse bject.type] | @tsv FieldEnforcementgit git ache/node/24.14.--show-toplevel git (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv user.name Test User (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color ache/go/1.25.8/x64/pkg/tool/linux_amd64/link /usr/bin/git 141074254 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git bject.type] | @tsv --show-toplevel (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv -test.paniconexit0 -test.v=true /usr/lib/git-core/git -test.timeout=10gh -test.run=^Test -test.short=true/repos/actions/github-script/git/ref/tags/v9 /usr/lib/git-cor--jq main�� run --auto /usr/bin/git --detach (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --get remote.origin.url /usr/bin/git h ../../../.pretgit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv waysRecompiles2988403704/001 x_amd64/vet /usr/bin/git get --global rgo/bin/git git remo�� (http block)
  • https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git ant-2205244504/.git --local ules/.bin/sh git rev-�� --show-toplevel git .cfg th .prettierignogit --local cal/bin/bash git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv Safe: ${{ github.actor }}, Unsafe: ${{ secrets.TOKEN }} git /usr/bin/git &#39;**/*.ts&#39; &#39;**/*.git git odules/npm/node_--show-toplevel git rev-�� --show-toplevel gh /usr/bin/git Gitmaster_branchgit Gitmaster_branchrev-parse it git (http block)
  • https://api.github.com/repos/aws-actions/configure-aws-credentials/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel infocmp /usr/bin/git ons-test18477671git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel node /usr/bin/git k/gh-aw/gh-aw/pkgh (http block)
    • Triggering command: /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 ons-test15426798git remote (http block)
  • https://api.github.com/repos/azure/login/git/ref/tags/v2
    • Triggering command: /usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel (http block)
    • Triggering command: /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 /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git /tmp/gh-aw-test-infocmp l /usr/bin/git git (http block)
  • https://api.github.com/repos/docker/login-action/git/ref/tags/v3
    • Triggering command: /usr/bin/gh gh api /repos/docker/login-action/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel infocmp /usr/bin/git xterm-color (http block)
    • Triggering command: /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 rev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/gh --get remote.origin.ur-1 me: String!) { xterm-color gh (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v0.1.2
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/cgo /usr/bin/gh 141074254 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel 1/x64/bin/node /usr/bin/infocmp vitest run set_igit gh (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0
    • Triggering command: /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 /usr/bin/git json&#39; --ignore-pgit --local n-dir/sh git rev-�� --show-toplevel git /usr/bin/git *.json&#39; &#39;!../../git --local x86_64/node git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq /usr/bin/git iant-3229355532 gh 1/x64/bin/sh git -C /tmp/shared-actions-test154267982 l /usr/bin/git remote.origin.urgit git _modules/.bin/no--show-toplevel git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3
    • Triggering command: /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 json&#39; --ignore-pgit --local h /opt/hostedtoolcache/go/1.25.8/x--jq -ato�� /ref/tags/v9 -buildtags sv -errorsas flow-test-12345 -nilfunc git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv sv git /usr/bin/git json&#39; --ignore-pgit git x86_64/sh git rev-�� --show-toplevel gh /usr/bin/git lGitbranch_with_git lGitbranch_with_rev-parse ndor/bin/bash git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-05-01 (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-04-08 (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-02-07 (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name on 64/pkg/tool/linux_amd64/compile /../../.prettier/usr/bin/git erignore (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 on 64/pkg/tool/linux_amd64/vet /../../.prettiergit erignore (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name gh At,event,headBranch,headSha,displayTitle /ref/tags/v9 --jq sv node m/_n�� prettier --write ache/go/1.25.8/x64/bin/go !../../../pkg/woinfocmp r ../../../.prettixterm-color sh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name --ignore-submodules 64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 g/workflow/import_schema_test.go 64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name -collect-logs k --show-toplevel git /usr/bin/gh sh sRem�� te &#39;scripts/**/*.js&#39; --ignore-path .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.jgit gh k/gh-aw/gh-aw/actions/node_modules/.bin/node /repos/actions/ggit --jq /usr/bin/git bash (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1234567890
    • Triggering command: /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 ../../../.prettierignore (http block)
    • Triggering command: /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 --jq n-dir/git --show-toplevel infocmp /usr/bin/infocmp git rev-�� ../pkg/workflow/js/**/*.json&#39; --ignore-path ../../../.prettierignore infocmp 1/x64/bin/npm ithub-script/gitnode infocmp bject.type] | @t/tmp/TestHashStability_SameInputSameOutput4282666243/001/stability-test.md git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 stmain.go 64/pkg/tool/linux_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name -collect-logs ache/uv/0.11.11/x86_64/sh 1 1 git /usr/bin/infocmp--show-toplevel sh -c te &#39;scripts/**/*.js&#39; --ignore-path .prettierignore --log-level=error infocmp k/gh-aw/gh-aw/node_modules/.bin/node xterm-color git /usr/bin/git bash (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name on 64/pkg/tool/linux_amd64/compile /../../.prettierinfocmp erignore (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 on 64/pkg/tool/linux_amd64/vet /../../.prettiergit erignore (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name git e_modules/.bin/node --show-toplevel git /usr/bin/infocmp--show-toplevel node m/_n�� prettier --write 1/x64/bin/node !../../../pkg/wogit r ../../../.pretti--show-toplevel 1/x64/bin/node (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name on 64/pkg/tool/linux_amd64/vet /../../.prettiergh erignore (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 on tnet/tools/bash /../../.prettiergit erignore (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name gh es/.bin/node /ref/tags/v9 --jq ode-gyp-bin/sh node m/_n�� prettier --write 64/pkg/tool/linux_amd64/vet !../../../pkg/wogh r ../../../.pretti/repos/actions/github-script/git/ref/tags/v9 64/pkg/tool/linu--jq (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name on 64/pkg/tool/linux_amd64/link /../../.prettier/usr/bin/git erignore (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 on 64/pkg/tool/linux_amd64/vet /../../.prettiergit erignore (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name infocmp in/node xterm-color git /usr/bin/gh node m/_n�� prettier --write /home/REDACTED/work/gh-aw/node_modules/.bin/sh !../../../pkg/woinfocmp r ../../../.prettixterm-color sh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name on 64/pkg/tool/linux_amd64/vet /../../.prettier/usr/bin/git erignore (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 origin son /../../.prettiergit (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name git ache/node/24.14.1/x64/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node/repos/actions/github-script/git/ref/tags/v9 --show-toplevel git /usr/bin/infocmp--show-toplevel node m/_n�� prettier --write /home/REDACTED/work/node_modules/.bin/sh !../../../pkg/wo/usr/bin/gh r ../../../.prettigraphql sh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path h ../../../.prettierignore (http block)
    • Triggering command: /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 (http block)
    • Triggering command: /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 (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build2545085866/b405/cli.test /tmp/go-build2545085866/b405/cli.test -test.testlogfile=/tmp/go-build2545085866/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true (http block)
    • Triggering command: /tmp/go-build1533809590/b405/cli.test /tmp/go-build1533809590/b405/cli.test -test.testlogfile=/tmp/go-build1533809590/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true ithub-script/gitsh git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v0.47.4
    • Triggering command: /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 --get remote.origin.ur-k docker-compose git rev-�� --show-toplevel docker-compose /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
    • Triggering command: /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/gh runs/20260508-06du git /opt/hostedtoolc/tmp/gh-aw/aw-feature-branch.patch gh api /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/gh sv x_amd64/compile /usr/bin/git gh (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv rite &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pr**/*.json **/*.cjs 1/x64/bin/node **/*.json --ignore-path ../../../.prettilist sh t-ha�� vaScript42840721--workflow (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv th .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json infocmp ode_modules/.bin/prettier elete git ca5ac38d47d21b9bsecrets.TOKEN git rev-�� repo528156683/001 git x86_64/node nore git /usr/bin/git sh (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv */*.ts&#39; &#39;**/*.json&#39; --ignore-pat**/*.json issue-field-safe-output ache/node/24.14.1/x64/bin/git credential.helpegit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv d-robin&#39; infocmp ache/go/1.25.8/x64/bin/git /ref/tags/v9 git sv git rev-�� th .prettierignore --log-level=error gh odules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node /repos/actions/ginfocmp --jq /usr/bin/git pins synced successfully&#34;; \ elrev-parse (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv json&#39; --ignore-path ../../../.pr**/*.json issue-field-safe-output tions/setup/js/node_modules/.bin../../../.prettierignore credential.helpegit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv 118861668 issue-field-safe-output h credential.userngit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv json&#39; --ignore-path ../../../.pr**/*.json issue-field-safe-output tions/setup/js/node_modules/.bin../../../.prettierignore credential.userngit (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv 118861668/.githu--detach issue-field-safe-output de_modules/.bin/sh credential.helpegit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv ty-test.md infocmp nfig/composer/ve-q /ref/tags/v9 git sv git rev-�� Gitbranch_with_hyphen623552689/001&#39; Gitbranch_with_hyphen623552689/001&#39; 64/bin/go --show-toplevel 8262cbbe81109d28-C /usr/bin/git git (http block)
  • https://api.github.com/repos/google-github-actions/auth/git/ref/tags/v2
    • Triggering command: /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 --show-toplevel (http block)
    • Triggering command: /usr/bin/gh gh api /repos/google-github-actions/auth/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel node /usr/bin/git /home/REDACTED/worgit infocmp /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git /tmp/gh-aw-test-git remote om/owner/repo.gi--show-toplevel git (http block)
  • https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv rite &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pr**/*.json **/*.cjs m/_npx/b388654678d519d9/node_modules/.bin/prettier **/*.json --ignore-path ../../../.pretti-v sh -c &#34;prettier&#34; --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; --ignore-path ../.infocmp (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv th .prettierignore --log-level=error --jq n-dir/node --show-toplevel 8262cbbe81109d28-C /usr/bin/git gh ode_�� /repos/actions/gremote.origin.url --jq e_modules/.bin/sh nore git (http block)
  • https://api.github.com/repos/nonexistent/repo/actions/runs/12345
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion test.cjs (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion .prettierignore --log-level=errorev-parse erignore bash --no�� 1655-20842/test-2305364665/.github/workflows gh /usr/bin/git sue_field.test.c/usr/bin/git --jq /usr/bin/git git (http block)
  • https://api.github.com/repos/owner/repo/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo git (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo eloper-action-main/dist/gh-gpgsign/gh-gpgsign-linux-x86_64 (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state k/gh-aw/gh-aw/actions/node_modules/.bin/sh nore test (http block)
  • https://api.github.com/repos/test-owner/test-repo/actions/secrets
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name h ../../../.prettierignore (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name h ../../../.prettierignore infocmp odules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/sh xterm-color infocmp /usr/bin/infocmp--write git rev-�� w/js/**/*.json&#39; --ignore-path infocmp 64/pkg/tool/linux_amd64/compile xterm-color infocmp (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch 3451889 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch &#34;prettier&#34; --write &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-pat--repo =main 3809590/b460/vet.cfg /repos/actions/ggit --jq /usr/bin/gh sh -c npx prettier --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; --ignore-path ..infocmp gh /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /ref/tags/v9 --jq sv /opt/hostedtoolcache/go/1.25.8/x--json (http block)

If you need me to access, download, or install something from one of these locations, you can either:

@pelikhan
Copy link
Copy Markdown
Collaborator

pelikhan commented May 8, 2026

@copilot merge main and recompile
Review allowed-fields from create-issue and add support in this safe outputs . Refactor common fields code

Copilot AI and others added 2 commits May 8, 2026 10:08
This reverts commit 5552a95.

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
@pelikhan
Copy link
Copy Markdown
Collaborator

pelikhan commented May 8, 2026

@copilot use set-issue-field in smoke-codex

@pelikhan
Copy link
Copy Markdown
Collaborator

pelikhan commented May 8, 2026

@copilot merge main and recompile

Copilot AI and others added 2 commits May 8, 2026 10:20
…-field-safe-output

# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 8, 2026

@copilot merge main and recompile
Review allowed-fields from create-issue and add support in this safe outputs . Refactor common fields code

Done in 66c7b53 (plus merge commit bd3e822).

  • Merged origin/main and recompiled lock files.
  • Added allowed-fields support to set-issue-field (config/schema/compiler/runtime/docs).
  • Reused common allowed-issue-field logic by refactoring shared parsing/validation into actions/setup/js/allowed_issue_fields.cjs and wiring both create_issue and set_issue_field to it.
  • Added targeted JS/Go tests, including handler-config coverage for set-issue-field.

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
    • Triggering command: /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 (http block)
    • Triggering command: /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 -pack /home/REDACTED/work/gh-aw/gh-aw/pkg/stringutil/ansi.go /home/REDACTED/work/gh-aw/gh-aw/pkg/stringutil/identifiers.go (http block)
    • Triggering command: /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 -pack /home/REDACTED/work/gh-aw/gh-aw/cmd/gh-aw/main.go (http block)
  • https://api.github.com/orgs/test-owner/actions/secrets
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name ath ../../../.pr**/*.json /sa1 repository(owne../../../.prettierignore tierignore committer.name ed } } node er k/gh-aw/gh-aw ../../../**/*.json cision-gate.lock.yml --ignore-path ../../../.pretti-1 me: String!) { xterm-color node (http block)
  • https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel node /usr/bin/git 10 --write (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v3
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv /ref/tags/v9 x_amd64/compile sv /home/REDACTED/worgh est normalizer.lock./repos/actions/github-script/git/ref/tags/v9 git remo�� DiscussionsEnabluser.email /usr/bin/gh /usr/bin/gh k/gh-aw/gh-aw/.ggit -f tions/node_modul--show-toplevel gh (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v5
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv SameOutput1906433907/001/stability-test.md /usr/lib/systemdrev-parse 1/x64/bin/node ./../.prettieriggit --log-level 64/pkg/tool/linu--show-toplevel sh t-ha�� ithub/workflows/agent-persona-explorer.md &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitmaster_branch3721923513/001&#39; (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel infocmp /usr/bin/git xterm-color sh /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git /tmp/TestGuardPogit config /usr/bin/infocmp--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/gh --show-toplevel ortcfg /usr/bin/git gh api /repos/actions/setup-go/git/ref/tags/v4 --jq /usr/bin/infocmp --show-toplevel ache/go/1.25.8/xrev-parse /usr/bin/gh infocmp (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (.*\)$/\2/p (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv ithub/workflows (http block)
  • https://api.github.com/repos/actions/download-artifact/git/ref/tags/v8
    • Triggering command: /usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv submodules | head -n 10 (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv .js&#39; --ignore-path .prettierignore --log-level=error rev-parse r: $owner, name: $name) { hasDiscussionsEnabled } } (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v8
    • Triggering command: /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 docker /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv --noprofile (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -t: -k me: String!) { --log-level=error (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9.0.0
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv e_issue.test.cjs set_issue_field.test.cjs git l get e-main and set-i/home/REDACTED/work/gh-aw/gh-aw/actions/setup/js/node_modules/.bin/pre�� /usr/local/.ghcu--write sh -c ath ../../../.pr**/*.json l me: String!) { ../../../.prettierignore ithub/workflows pull.rebase /home/REDACTED/go/&#34;prettier&#34; --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; ---errorsas sh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv npx prettier --write &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.-f t.cjs ml get --local e/git sh -c ath ../../../.pr**/*.json e/git /home/REDACTED/wor../../../.prettierignore tierignore committer.name ed } } node (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv ithub/workflows git /home/REDACTED/work/_temp/uv-python-dir/node ithub/workflows = get &amp;&amp; echo &#34;p-c r: $owner, name:&#34;prettier&#34; --write &#39;scripts/**/*.js&#39; --ignore-path .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json node /hom�� ithub/workflows scripts/**/*.js ock.yml l --log-level=erro-c /opt/hostedtoolc&#34;prettier&#34; --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; ---errorsas bash (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /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/linux_amd64/compile /usr/bin/gh SameOutput190643infocmp git e/git gh api /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/git mplied git /home/REDACTED/.co--show-toplevel git (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv github.event.issue.number infocmp /usr/bin/git on&#39; --ignore-patgit bash /usr/bin/infocmp--show-toplevel git rese�� HEAD resolved$ /usr/bin/git ithub/workflows git x_amd64/vet git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color ache/go/1.25.8/x64/pkg/tool/linutest@example.com /usr/bin/git epository infocmp /home/REDACTED/wor/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel sh /usr/bin/git &#39;/tmp/TestParsegit &#39;/tmp/TestParserev-parse 2831349/b418/vet--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git bject.type] | @tsv --show-toplevel node /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git /tmp/gh-aw-test-infocmp config /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw -d cleanup.lock.yml--log-level=error -r foreach(ini_get_-c (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv 5408205/b001/_pkremote.origin.url config repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } nore (http block)
  • https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/approach-validator.md gh /usr/bin/git k/gh-aw/gh-aw/.ggit --jq ock.yml git rev-�� --show-toplevel git .cfg th .prettierignogit config ode_modules/.bin--show-toplevel git (http block)
  • https://api.github.com/repos/aws-actions/configure-aws-credentials/git/ref/tags/v4
    • Triggering command: /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 ndlerConfigInclurev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel node /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/node/24.14.1/x64/bin/node /usr/bin/git uts.enforce_all gh -importcfg /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp /tmp/gh-aw-test-git config /usr/bin/git infocmp (http block)
  • https://api.github.com/repos/azure/login/git/ref/tags/v2
    • Triggering command: /usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel node /usr/bin/git /tmp/TestHashCongit node /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel node /usr/bin/gh /tmp/TestHashConinfocmp node /usr/bin/git gh (http block)
  • https://api.github.com/repos/docker/login-action/git/ref/tags/v3
    • Triggering command: /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/TestGuardPogit config /usr/bin/infocmp--show-toplevel git rev-�� /ref/tags/v9 infocmp sv xterm-color node om/org2/repo2.gixterm-color gh (http block)
  • https://api.github.com/repos/docker/metadata-action/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/docker/metadata-action/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/docker/metadata-action/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw config 1/x64/bin/npm remote.origin.urgit (http block)
  • https://api.github.com/repos/docker/setup-buildx-action/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/docker/setup-buildx-action/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/docker/setup-buildx-action/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows show (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch get --global repository(owner: $owner, name:-f http.https://gitgit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch aw/actions-lock.json ]; then \ cp .github/aw/ac-s show k/gh-aw/gh-aw/actions/setup/node_modules/.bin/no-buildmode=exe submodules | hea/usr/bin/gh (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v0.1.2
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel 64/pkg/tool/linux_amd64/vet /usr/bin/gh 2831349/b391/_pkgit rev-parse e/git-upload-pac--show-toplevel gh api /repos/actions/github-script/git/ref/tags/v9 --jq (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv m-evolution-insilist git /usr/bin/git json&#39; --ignore-pgit config er: String!, $na--show-toplevel git conf�� user.name Test User /usr/bin/git ithub/workflows -f x_amd64/vet git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3
    • Triggering command: /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 infocmp sv json&#39; --ignore-pgit iptables odules/npm/node_--show-toplevel /usr/lib/git-core/git main�� /ref/tags/v9 --auto sv --detach flow-test-12345 x_amd64/vet git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-05-01 (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-04-08 config ed } } infocmp eWit�� */*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.prettierignore git x_amd64/vet on&#39; --ignore-patgit show odules/npm/node_DROP x_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-02-07 owner=github -f git -C itmaster_branch3721923513/001 itmaster_branch3721923513/002/work x86_64/sh remote.origin.urgit erena-mcp-serverlog (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name git aw.test /home/REDACTED/wor/usr/bin/git rev-parse /home/REDACTED/.lo--get-regexp aw.test 0628�� ithub/workflows -- k nore -- er: String!, $naadd git (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 show /usr/bin/git son rev-parse es/.bin/sh git -C /home/REDACTED/work/gh-aw/gh-aw/.github/workflows rev-parse k nore config DiscussionsEnabl--show-toplevel git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name show x_amd64/vet ./../pkg/workflogit -f $name) { has--show-toplevel x_amd64/vet -C k/gh-aw/gh-aw/.github/workflows show k/gh-aw/node_modules/.bin/node l -f n-dir/sh git (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 config 64/pkg/tool/linux_amd64/link remote.origin.urinfocmp (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1234567890
    • Triggering command: /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, rt scripts/**/*.js me: String!) { repository(owne-f .prettierignore --log-level=erro--write repository(owne../../../**/*.json bash --no�� ithub/workflows git r.lock.yml ithub/workflows (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name ghcr.io/github/serena-mcp-server:latest x_amd64/vet l (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 -f 64/pkg/tool/linux_amd64/link -f owner=github -f 64/pkg/tool/linux_amd64/link imag�� ntdrain.test mcp/context7 ortcfg.link nore rev-parse ndor/bin/sh 0lh7JTlWDU8pZ7vPbP/MsCFc7lGSFNajorigin (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name rev-parse 64/pkg/tool/linux_amd64/vet l config (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 rev-parse ash son -f ode_modules/.bin--git-dir /usr/bin/gh api 3161649110 -f bin/sh nore owner=github -f git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name config 64/pkg/tool/linux_amd64/vet remote.origin.urgh show DiscussionsEnabllist 64/pkg/tool/linu--json /opt�� ithub/workflows -- k/node_modules/.--created nore -- r: $owner, name:user.email git (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 config 64/pkg/tool/linux_amd64/vet son (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name show 64/pkg/tool/linux_amd64/vet k/gh-aw/gh-aw -f kflows/prompt-clxterm-color 64/pkg/tool/linux_amd64/vet api graphql -f e_modules/.bin/sh nore owner=github -f docker (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 git k/_temp/uv-python-dir/bash son show DiscussionsEnabl--show-toplevel git -C /home/REDACTED/work/gh-aw/gh-aw show cal/bin/sh nore -f x86_64/node git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name rev-parse ntdrain.test l (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 -f /usr/bin/git son owner=github -f git -C 3907/001/stability-test.md config /usr/bin/git nore show n-dir/node git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path ath ../../../.pr**/*.json git modules/@npmcli/run-script/lib/node-gyp-bin/node tierignore committer.name msg node er ithub/workflows ../../../**/*.json /home/REDACTED/.local/bin/node --ignore-path ../../../.prettiinit (http block)
    • Triggering command: /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 (http block)
    • Triggering command: /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 config 64/pkg/tool/linux_amd64/compile git tion�� etup-node/git/ref/tags/v6 config son ignore show r: $owner, name:--git-dir git (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build2062831349/b405/cli.test /tmp/go-build2062831349/b405/cli.test -test.testlogfile=/tmp/go-build2062831349/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true t.cjs test.cjs r: $owner, name:&#34;prettier&#34; --write &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pret.prettierignore ache/go/1.25.8/x64/pkg/tool/linuconfig /hom�� ithub/workflows **/*.cjs /home/REDACTED/work/gh-aw/gh-aw/actions/setup/node_modules/.bin/sh **/*.json --ignore-path ../../../.prettinpx prettier --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; --ignore-path ../../../.prettierignore sh (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v0.47.4
    • Triggering command: /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 remote om/myorg/repo.gi/tmp/gh-aw/aw-feature-branch.patch git rev-�� --show-toplevel infocmp /usr/bin/git xterm-color /bin/sh /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv rite &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pr**/*.json rev-parse k/gh-aw/node_modules/.bin/node */*.ts&#39; &#39;**/*.jsgh show n-dir/sh infocmp m/_n�� 2741-14275/test---workflow git /usr/bin/git */*.json&#39; &#39;!../.git r $name) { has/tmp/TestCollectWorkflowFiles_WithImports3613527023/001 git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows 9 (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv -x c me: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } - (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv iant-1085933276/--detach /usr/lib/git-cor**/*.cjs /usr/bin/git ath ../../../.prgh ings.cjs repository(owne/repos/actions/github-script/git/ref/tags/v9 git -C k/gh-aw/gh-aw rev-parse me: String!) { repository(owne../../../.prettierignore o :latest DiscussionsEnabl--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw remote.origin.url kflows/daily-performance-summary.lock.yml ath ../../../.pr/opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv --git-dir git l ath ../../../.prgit (http block)
  • https://api.github.com/repos/google-github-actions/auth/git/ref/tags/v2
    • Triggering command: /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 /tmp/TestGuardPogit rev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git thImports3613527git l /usr/bin/git git (http block)
  • https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv rite &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pr**/*.json show e_modules/.bin/node */*.ts&#39; &#39;**/*.js/usr/bin/git (http block)
  • https://api.github.com/repos/nonexistent/repo/actions/runs/12345
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion remote.origin.urgit config 1/x64/bin/sh ache/go/1.25.8/x64/pkg/tool/linux_amd64/cgo -1 xterm-color infocmp ache/node/24.14.1/x64/bin/npx &#39;**/*.ts&#39; &#39;**/*.git (http block)
  • https://api.github.com/repos/owner/repo/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo me: String!) { --log-level=error l --log-level=erro-c bin/linux-x64/rg&#34;prettier&#34; --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; ---errorsas node er --write ../../../**/*.json yml --ignore-path ../../../.prettirev-parse DiscussionsEnabl--show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linuconfig (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo r.lock.yml .prettierignore --log-level=erro-c r: $owner, name:&#34;prettier&#34; --write &#39;../../../**/*.json&#39; &#39;!../../../pkg/workflow/js/**/*.json&#39; --ignore-path ../../../.prettierignore /bin/sh -c ithub/workflows ache/go/1.25.8/xcreate_issue.test.cjs repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } l (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state e_modules/.bin/sh nore -gbd3e822ac3-dirrev-parse $name) { has--git-dir infocmp -1 agent-performance-analyzer.md infocmp .cfg k/gh-aw/gh-aw/.g/usr/bin/git (http block)
  • https://api.github.com/repos/test-owner/test-repo/actions/secrets
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name ath ../../../.pr**/*.json e/git /home/REDACTED/wor../../../.prettierignore tierignore committer.name ed } } node er ithub/workflows ../../../**/*.json (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch 01/test2.md rev-parse $name) { hasDiscussionsEnabled } } &#39;**/*.ts&#39; &#39;**/*.git %H %ct %D (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title Add set-issue-field safe output with schema/compiler wiring and actionable field-value errors Add set-issue-field safe output with allowed-fields constraints, schema/compiler wiring, and actionable field-value errors May 8, 2026
Copilot AI and others added 3 commits May 8, 2026 10:39
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/7f1d22a8-421b-4c7f-aec5-2c0f013ca53d

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
This reverts commit cbbffd8.

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
…-field-safe-output

# Conflicts:
#	.github/workflows/daily-cache-strategy-analyzer.lock.yml
#	.github/workflows/duplicate-code-detector.lock.yml
#	.github/workflows/issue-arborist.lock.yml
#	.github/workflows/smoke-codex.lock.yml

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 8, 2026

@copilot use set-issue-field in smoke-codex

Implemented in b9f88a1: smoke-codex now uses set-issue-field by enabling safe-outputs.set-issue-field and adding explicit smoke-test instructions to execute set_issue_field once on the created issue.

@copilot merge main and recompile

Done in b9f88a1: merged latest origin/main, rebuilt, and recompiled workflows (make build, make recompile).

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
    • Triggering command: /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 (http block)
    • Triggering command: /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 DcsJetg/iiWPQwRu/opt/hostedtoolcache/node/24.14.1/x64/bin/npx (http block)
    • Triggering command: /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 -2c0f013ca53d (http block)
  • https://api.github.com/orgs/test-owner/actions/secrets
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name ithub/workflows (http block)
  • https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel node /usr/bin/git 7 --write /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git runs/20260508-10gh node t git (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v3
    • Triggering command: /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 xterm-color (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v5
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --noprofile docker-compose /home/REDACTED/.config/composer/vendor/bin/sh ./../.prettieriggit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel infocmp /usr/bin/git k/gh-aw/gh-aw/.ggit sh /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel /bin/sh /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/gh --show-toplevel ortcfg /usr/bin/git gh api /repos/actions/setup-go/git/ref/tags/v4 --jq /usr/bin/infocmp --show-toplevel ache/go/1.25.8/xrev-parse /usr/bin/gh infocmp (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --local credential.username k/_temp/uv-python-dir/bash (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv sistency_WithImports3599791554/001/main.md -test.v=true /usr/bin/git -test.timeout=10git -test.run=^Test -test.short=true--show-toplevel git ls-r�� -aw/git/ref/tags/v1.2.3 origin bject.type] | @tsv k/gh-aw/gh-aw scripts/**/*.js x86_64/node git (http block)
  • https://api.github.com/repos/actions/download-artifact/git/ref/tags/v8
    • Triggering command: /usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv files...&#34; issue-field-safe-output r: $owner, name: $name) { hasDiscussionsEnabled } } credential.userngit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv tformat HEAD k/gh-aw/gh-aw/actions/node_modul-f (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v8
    • Triggering command: /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 git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv --abbrev-ref HEAD repository(owner: $owner, name:-f (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv ithub/workflows (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9.0.0
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv &#34;prettier&#34; --write &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.js-f (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /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/linux_amd64/compile /usr/bin/gh 2408039/b405/_pkgh git e/git gh api /repos/actions/github-script/git/ref/tags/v9 --jq /usr/bin/git mplied /home/REDACTED/worrev-parse /home/REDACTED/wor--show-toplevel git (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv github.event.issue.number infocmp /usr/bin/git k/gh-aw/gh-aw/.ggit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color ache/go/1.25.8/x64/pkg/tool/linux_amd64/link /usr/bin/git st-3447935159 git flow.lock.yml git rev-�� --show-toplevel 5N6R177G2K_HA/oMD6biQSdl1hAgLvpZremote.origin.url /usr/bin/git &#39;/tmp/TestParsegit &#39;/tmp/TestParserev-parse 2408039/b415/_pk--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv ithub-script/git/ref/tags/v9 git bject.type] | @tsv /tmp/TestGuardPogit rev-parse /usr/bin/infocmp--show-toplevel git rev-�� --show-toplevel infocmp /usr/bin/git xterm-color l /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --local credential.username repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv -bool -buildtags ache/node/24.14.1/x64/bin/node -errorsas -ifaceassert -nilfunc git-upload-pack t-35�� k/gh-aw/gh-aw/.github/workflows/ai-moderator.md -tests /opt/hostedtoolcache/node/24.14.1/x64/bin/node --write scripts/**/*.js /home/REDACTED/.lo--show-toplevel node (http block)
  • https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color git /usr/bin/git json&#39; --ignore-pgit show er: String!, $na--show-toplevel git rev-�� --show-toplevel l .cfg th .prettierignogit -f (http block)
  • https://api.github.com/repos/aws-actions/configure-aws-credentials/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/aws-actions/configure-aws-credentials/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel 64/pkg/tool/linux_amd64/vet /usr/bin/git /tmp/TestGuardPogit config /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git /tmp/gh-aw-test-gh remote .cfg git (http block)
    • Triggering command: /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 (http block)
  • https://api.github.com/repos/azure/login/git/ref/tags/v2
    • Triggering command: /usr/bin/gh gh api /repos/azure/login/git/ref/tags/v2 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/node/24.14.1/x64/bin/node /usr/bin/git uts.enforce_all git config /usr/bin/gh git rev-�� --show-toplevel gh /usr/bin/gh /repos/actions/ginfocmp --jq /usr/bin/git gh (http block)
  • https://api.github.com/repos/docker/login-action/git/ref/tags/v3
    • Triggering command: /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 --show-toplevel /bin/sh /usr/bin/git git rev-�� /ref/tags/v9 git sv /tmp/gh-aw-test-infocmp remote /usr/bin/git gh (http block)
  • https://api.github.com/repos/docker/metadata-action/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/docker/metadata-action/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv get --global t http.https://gitgit (http block)
  • https://api.github.com/repos/docker/setup-buildx-action/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/docker/setup-buildx-action/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv get --global ndor/bin/sh http.https://git/usr/bin/gh (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch --local user.email rgo/bin/bash son (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v0.1.2
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linu^remote\..*\.gh-resolved$ /usr/bin/gh 2527553540 git sv gh api /repos/actions/github-script/git/ref/tags/v9 --jq (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --get remote.origin.url /usr/bin/git ithub/workflows -f kflows/github-re--show-toplevel git conf�� user.email test@example.com /usr/bin/git k/gh-aw/gh-aw ck.yml x_amd64/link git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3
    • Triggering command: /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 ithub/workflows show er: String!, $na--show-toplevel git bran�� /ref/tags/v9 git sv ub/workflows flow-test-12345 x_amd64/vet /usr/bin/unpigz (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-05-01 -output r: $owner, name: $name) { has/tmp/go-build2852408039/b437/parser.test git 1/x6�� or.md config 1/x64/bin/node remote.origin.urgit (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-04-08 -output $name) { has--show-toplevel docker imag�� vent, headBranch: .head_branch, ghcr.io/github/serena-mcp-server:latest x_amd64/compile json; \ cp .gitgit (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --limit 100 --created &gt;=2026-02-07 (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name ghcr.io/github/serena-mcp-server:latest ntdrain.test mkcert --CAROOT (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 rev-parse rgo/bin/bash son --global r: $owner, name:--show-toplevel git -C 3075462047 show h nore --local 1/x64/bin/node /usr/bin/gh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name show 64/pkg/tool/linux_amd64/vet ../pkg/workflow/infocmp (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 rev-parse x_amd64/vet (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1234567890
    • Triggering command: /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 ../../../.prettierignore :latest /usr/bin/git ock.json pkg/wornode --ignore-path ../../../.pretti--write git for-�� w/js/**/*.json&#39; --ignore-path --merged=72f7c81../../../.prettierignore ustering-analysis.lock.yml (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name -f x_amd64/vet -f owner=github -f x_amd64/vet imag�� g_.a ghcr.io/github/serena-mcp-server:latest ache/node/24.14.1/x64/bin/node nore tdrain bin/sh git (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 config x_amd64/compile remote.origin.ur/opt/hostedtoolcache/node/24.14.1/x64/bin/node (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name rev-parse 64/pkg/tool/linux_amd64/link (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 show p/bin/bash son --global de_modules/.bin/node git -C 3075462047 config /usr/bin/git remote.origin.urgit --local $name) { has--show-toplevel git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name config 64/pkg/tool/linux_amd64/compile remote.origin.urgit -c n-dir/sh 64/pkg/tool/linux_amd64/compile api g_.a -f k/node_modules/.bin/sh nore tants -f git (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 git sh son --global DiscussionsEnabl--show-toplevel git -C /home/REDACTED/work/gh-aw/gh-aw/.github/workflows config sh nore --local 64/bin/node git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name ne_constants.go 64/pkg/tool/linux_amd64/vet /home/REDACTED/worgit (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 git bash son 848351-bvyu79.txconfig bin/node /usr/bin/gh api 01/test1.md -f k/gh-aw/gh-aw/actions/setup/js/node_modules/.bin-importcfg -f owner=github -f gh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name -f 64/pkg/tool/linux_amd64/compile -f owner=github -f nH/ocpKaV6yOFzvJtest@example.com -C g_.a rev-parse k nore tants_test nfig/composer/ve--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 config nfig/composer/vendor/bin/bash son --global $name) { has--show-toplevel git -C 3075462047 rev-parse k nore --local cal/bin/git infocmp (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path k/gh-aw/gh-aw ../../../**/*.js.prettierignore me: String!) { --log-level=error --ignore-path ../../../.pretti-c ed } } /bin/sh -c ithub/workflows (http block)
    • Triggering command: /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 (http block)
    • Triggering command: /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 (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build2852408039/b405/cli.test /tmp/go-build2852408039/b405/cli.test -test.testlogfile=/tmp/go-build2852408039/b405/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v0.47.4
    • Triggering command: /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 git git /usr/bin/gh git rev-�� --show-toplevel gh /usr/bin/git /repos/github/ghgit --jq /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv /home/REDACTED/work/gh-aw/gh-aw/.github/workflows rev-parse cal/bin/node NA_qQ38iS --local erignore bash m/_n�� 4514-11099/test---workflow ortcfg ache/go/1.25.8/x--limit *.json&#39; &#39;!../../git r ache/go/1.25.8/x/tmp/TestCollectWorkflowFiles_WithImports2675065313/001 ache/go/1.25.8/xremote (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv ithub/workflows show ache/uv/0.11.11/x86_64/node h ../../../.pretgit (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows config rcer.lock.yml l (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv iant-1093595643 -f arian.lock.yml -f owner=github -f git -C th .prettierignore --log-level=error rev-parse node l (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv json&#39; --ignore-path ../../../.pr**/*.json config (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows (http block)
  • https://api.github.com/repos/google-github-actions/auth/git/ref/tags/v2
    • Triggering command: /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 --show-toplevel /opt/hostedtoolcrev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git thImports2675065git remote.origin.urrev-parse /usr/bin/git git (http block)
  • https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv /home/REDACTED/work/gh-aw/gh-aw show ache/go/1.25.8/x64/bin/node 19VHOHgYy --local ache/uv/0.11.11/-v erignore m/_n�� 4514-11099/test-2991667698/.github/workflows ortcfg /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet *.json&#39; &#39;!../../infocmp r on.lock.yml /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linurev-parse (http block)
  • https://api.github.com/repos/nonexistent/repo/actions/runs/12345
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion remote.origin.urgit --local t git -C 1234766438 show ache/node/24.14.1/x64/bin/node */*.ts&#39; &#39;**/*.jsgit --local repository(owne--show-toplevel /usr/bin/gh (http block)
  • https://api.github.com/repos/owner/repo/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo /sh !../../../pkg/wonode --ignore-path ../../../.pretti--write go buil�� w/js/**/*.json&#39; --ignore-path -s -w -X main.ve../../../.prettierignore -agent.lock.yml gh-aw ./cmd/gh-aw DiscussionsEnabl/tmp/gh-aw-test-runs/20260508-104514-11099/test-source-field-variant-1093595643/.github/workflows /usr/bin/gh (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state /usr/bin/git nore --local time/copilot-dev--git-dir git -C te &#39;**/*.cjs&#39; &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-patremote.origin.url config .cfg remote.origin.ur/usr/bin/git github.com&gt; $name) { has--get-regexp bash (http block)
  • https://api.github.com/repos/test-owner/test-repo/actions/secrets
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name k/gh-aw/gh-aw/.g--ignore-path (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch 1234766438/.github/workflows l_workflow_test.go $name) { hasDiscussionsEnabled } } l_workflow_validgit paign_trigger_terev-parse ckout_config_par--show-toplevel ckout_disabled_test.go ache�� architecture-guardian.md ckout_manager_test.go nfig/composer/vendor/bin/sh ckout_persist_crsh ckout_runtime_or-c r _require_validatsh (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title Add set-issue-field safe output with allowed-fields constraints, schema/compiler wiring, and actionable field-value errors Add set-issue-field safe output with allowed-fields constraints, schema/compiler wiring, actionable field-value errors, and smoke-codex coverage May 8, 2026
@pelikhan pelikhan merged commit 8f69827 into main May 8, 2026
@pelikhan pelikhan deleted the copilot/add-set-issue-field-safe-output branch May 8, 2026 10:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[plan] Introduce set-issue-field safe output (analogous to set-issue-type)

3 participants