Skip to content

Make bundle mode the default for safe-output patch packaging#30626

Merged
pelikhan merged 4 commits intomainfrom
copilot/set-bundle-mode-default
May 6, 2026
Merged

Make bundle mode the default for safe-output patch packaging#30626
pelikhan merged 4 commits intomainfrom
copilot/set-bundle-mode-default

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 6, 2026

Summary

  • switch safe-output patch transport default from am to bundle for:
    • create_pull_request
    • push_to_pull_request_branch
  • keep explicit patch-format: am behavior supported
  • always generate a patch artifact even in default bundle mode so allowed-files / protected-files / excluded-files enforcement continues to run on patch content
  • keep bundle as the apply-time transport for changes
  • update schema/documentation/default examples to reflect the new default
  • update safe-output handler and apply-time handler tests for default bundle behavior with patch metadata present

Validation

  • make build && make fmt
  • npm run test:js -- safe_outputs_handlers.test.cjs push_to_pull_request_branch.test.cjs create_pull_request.test.cjs (from actions/setup/js)
  • make agent-report-progress
  • secret_scanning on changed files
  • parallel_validation run completed with:
    • Code Review: actionable comments addressed
    • CodeQL: no analyzable language changes reported

Copilot AI and others added 2 commits May 6, 2026 13:24
Copilot AI requested a review from pelikhan May 6, 2026 13:32
@pelikhan pelikhan marked this pull request as ready for review May 6, 2026 13:38
Copilot AI review requested due to automatic review settings May 6, 2026 13:38
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

This pull request switches the default safe-outputs transport for packaging changes from am (format-patch) to bundle (git bundle) for create_pull_request and push_to_pull_request_branch, updating schema/docs and adjusting handler tests to match the new default.

Changes:

  • Change JS safe-outputs handlers to default patch_format to "bundle" for both create PR and push-to-PR-branch flows.
  • Update workflow compiler comments plus JSON schema defaults/descriptions to reflect "bundle" as the default.
  • Update reference docs/frontmatter examples and JS tests to align with the new default behavior.
Show a summary per file
File Description
pkg/workflow/push_to_pull_request_branch.go Updates inline documentation/comments to reflect bundle as default patch transport.
pkg/workflow/create_pull_request.go Updates inline documentation/comments to reflect bundle as default patch transport.
pkg/parser/schemas/main_workflow_schema.json Changes schema defaults/descriptions for patch-format to default to bundle.
docs/src/content/docs/reference/safe-outputs-pull-requests.md Updates reference docs default/description for patch-format.
docs/src/content/docs/reference/frontmatter-full.md Updates reference examples and wording to show bundle as the default.
actions/setup/js/safe_outputs_handlers.test.cjs Updates tests to expect bundle as the default transport and bundle-shaped responses.
actions/setup/js/safe_outputs_handlers.cjs Switches default patch_format from am to bundle for both handlers.
actions/setup/js/push_to_pull_request_branch.cjs Updates a comment to reflect am is now non-default apply path.

Copilot's findings

Tip

Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comments suppressed due to low confidence (1)

actions/setup/js/safe_outputs_handlers.cjs:573

  • push_to_pull_request_branch now defaults patch_format to "bundle", but the downstream push/apply logic’s file-safety checks are currently patch-text based. With bundle transport, patchContent is empty while the operation is treated as non-empty, so allowed-files/protected-files enforcement (and excluded-files behavior) may not run as intended. Consider adding bundle-aware validation (e.g., derive changed paths/diff after fetching the bundle to a temp ref) or rejecting bundle when protections/exclusions cannot be enforced equivalently.
    // Determine transport format: "bundle" (default) uses git bundle (preserves merge topology),
    // "am" uses git format-patch / git am (good for linear histories).
    // Use ?? (nullish coalescing) so an empty-string resolved value is preserved and
    // rejected below rather than silently falling back to "bundle".
    // Track whether the user explicitly set patch_format so we can auto-fall-back
    // to bundle transport when merge commits are detected (since `git am` cannot
    // apply merge commits). When the user explicitly chose a format, respect it.
    const patchFormatExplicit = pushConfig["patch_format"] !== undefined || config["patch_format"] !== undefined;
    const pushPatchFormat = pushConfig["patch_format"] ?? config["patch_format"] ?? "bundle";
    const validPushPatchFormats = ["am", "bundle"];
  • Files reviewed: 8/8 changed files
  • Comments generated: 1

Comment on lines +328 to 333
// Determine transport format: "bundle" (default) uses git bundle (preserves merge topology),
// "am" uses git format-patch / git am (good for linear histories).
// Use ?? (nullish coalescing) so an empty-string resolved value is preserved and
// rejected below rather than silently falling back to "am".
const patchFormat = prConfig["patch_format"] ?? config["patch_format"] ?? "am";
// rejected below rather than silently falling back to "bundle".
const patchFormat = prConfig["patch_format"] ?? config["patch_format"] ?? "bundle";
const validPatchFormats = ["am", "bundle"];
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

@copilot always generate a patch so that you can apply the allowed-files/protected-files protection, but use the bundle for applying the changes.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Implemented in 68f366d (plus clarification follow-up 5596dbb): bundle mode now always generates and records a patch (patch_path) for allowed-files/protected-files/excluded-files enforcement, while bundle remains the apply-time transport. Also updated apply-time handlers/tests to require and validate patch content even when bundle_path is used. No UI changes in this PR, so no screenshot applies.

Copilot AI and others added 2 commits May 6, 2026 15:41
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 6, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

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 gh repo view --json owner,name --jq .owner.login + "/" + .name /usr/bin/git GOINSECURE GOMOD GOMODCACHE git -C /tmp/gh-aw-test-GOSUMDB remote ache/go/1.25.8/x64/bin/go GOSUMDB GOWORK (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 GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE infocmp (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 GOSUMDB GOWORK 1/x64/bin/git (http block)
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name h ../../../.prettierignore change.bundle k/_temp/uv-python-dir/git ure/test-change /tmp/gh-aw/aw-te/home/REDACTED/work/gh-aw/gh-aw/actions/setup/js/node_modules/.bin/pre�� ndor/bin/sh git rev-�� w/js/**/*.json' --ignore-path git test-change .test.cjs push_tnode est-change..feat/tmp/js-hash-test-2298404356/test-hash.js _modules/.bin/gi/tmp/TestHashStability_SameInputSameOutput3369318145/001/stability-test.md git (http block)
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name h ../../../.prettierignore --output=/tmp/gh-aw/aw-test-owner-test-repo-feature-test-change.patch.diff.tmp ode_modules/.bin/git *.json' '!../../node git 1/x64/bin/node git rev-�� w/js/**/*.json' --ignore-path ure/test-change de/node/bin/git s "-s -w -X mainnode tions/setup/js/n/tmp/js-hash-test-3809602529/test-hash.js 64/bin/git git (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 GOPROXY /usr/bin/infocmp GOSUMDB GOWORK ache/go/1.25.8/x--show-toplevel infocmp -1 xterm-color git 64/bin/go /ref/tags/v9 go sv go (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 "prettier" --wrigit git /home/REDACTED/wor--show-toplevel git rev-�� --show-toplevel node /usr/bin/git licyMinIntegritygh ../../../**/*.jsapi /usr/bin/git git (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 prettier /usr/bin/git scripts/**/*.js --ignore-path /home/node_modul--show-toplevel git rev-�� --show-toplevel node /usr/bin/git --write ../../../**/*.jsapi /usr/bin/git 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 GOSUMDB GOWORK ache/go/1.25.8/xGOMODCACHE -json GO111MODULE /opt/hostedtoolc-json git -C /tmp/TestCollectGOINSECURE rev-parse /opt/hostedtoolcGOMODCACHE -json GO111MODULE ache/go/1.25.8/x--show-toplevel go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv .github/workflows/test.md git /usr/bin/git repo285027738/00gh ure/test-change t git rev-�� --show-toplevel resolved$ /usr/bin/git ub/workflows --quiet ules/.bin/sh git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv .github/workflows/test.md git /usr/bin/git repo544045782/00gh ure/test-change 64/bin/node git conf�� /ref/tags/v9 epo}/actions/runs/12345/artifacts sv e --quiet /usr/sbin/git e/git-remote-https (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 -json GO111MODULE /opt/hostedtoolcache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv /repos/actions/github-script/git/ref/tags/v9 --jq /opt/hostedtoolcache/go/1.25.8/x64/bin/go GOSUMDB GOWORK 64/bin/go go env -json GO111MODULE tions/setup/node_modules/.bin/node GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv 40\} ster.patch /usr/bin/git h ../../../.pretinfocmp GO111MODULE /opt/hostedtoolcxterm-color git rev-�� ithub-script/git/ref/tags/v9 go bject.type] | @tsv -json GO111MODULE /opt/hostedtoolc-json git (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 --get remote.origin.urGOMOD 64/bin/go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --show-toplevel l /opt/hostedtoolcache/go/1.25.8/xGOMODCACHE get --local 64/bin/go go env -json GO111MODULE ache/go/1.25.8/xGOMODCACHE GOINSECURE GOMOD GOMODCACHE git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv user.email test@example.com ache/go/1.25.8/x64/bin/go GOSUMDB GOWORK /usr/local/.ghcu--show-toplevel git rev-�� tagedFiles3870981507/001/workfloGOINSECURE bash /opt/hostedtoolcache/go/1.25.8/xGOMODCACHE 3025-9404/test-1go (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 f3a0ac9b2bd3cdad-d GOPROXY ache/go/1.25.8/x64/bin/sh GOSUMDB GOWORK /usr/bin/git git rev-�� f/tags/v4 git sv --show-toplevel go /opt/hostedtoolc--show-toplevel git (http block)
    • 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 --get remote.origin.urrev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp /ref/tags/v9 git sv infocmp (http block)
    • 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 --get remote.origin.urrev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp --show-toplevel git /usr/bin/git 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 GOSUMDB GOWORK (http block)
    • 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 ithub/workflows GOWORK (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 GOSUMDB GOWORK (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 (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 -template-expressions.md GOWORK (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 go 64/bin/go -json GO111MODULE ache/go/1.25.8/x/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel git ache/go/1.25.8/x64/bin/go --show-toplevel GOPROXY ache/go/1.25.8/x--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv user.email test@example.com /usr/bin/git Onlymin-integritgh on ache/node/24.14./repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel sh /usr/bin/git bility_SameInputgit git /opt/pipx_bin/sh--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git Onlymin-integritinfocmp on rkflow/js/**/*.jxterm-color git rev-�� --show-toplevel sh /usr/bin/git ithub-script/gitgit e/git-remote-httrev-parse bject.type] | @t--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 GOSUMDB GOWORK /usr/bin/gh GOINSECURE GOMOD GOMODCACHE gh api /repos/actions/github-script/git/ref/tags/v9 --jq (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel go 64/bin/go -json GO111MODULE ache/go/1.25.8/xxterm-color git rev-�� --show-toplevel git ache/go/1.25.8/x64/bin/go --show-toplevel GOPROXY ache/go/1.25.8/x--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 --show-toplevel GOPROXY /usr/bin/git GOSUMDB GOWORK ache/go/1.25.8/xGOMODCACHE git rev-�� */*.ts' '**/*.json' --ignore-path ../../../.prettierignore git /opt/hostedtoolcache/go/1.25.8/x64/bin/go --show-toplevel GOPROXY /usr/bin/git go (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 GOSUMDB GOWORK om/myorg/myrepo.GOMODCACHE GOSUMDB GOWORK 64/bin/go go env -json GO111MODULE /opt/hostedtoolcache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --show-toplevel GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go go env -json GO111MODULE (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv GOSUMDB GOWORK 64/bin/go 021932863/customgo (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 GOSUMDB GOWORK 64/bin/go GOSUMDB GOWORK 64/bin/go git rev-�� --show-toplevel (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv /tmp/gh-aw-test-runs/20260506-154000-39940/test-test-logs/run-4 show r,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,disp--show-toplevel --verify --quiet -change git conf�� --get remote.origin.url 0"}} : .head_branch, origin/feature/trev-parse node git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv /tmp/gh-aw-test-runs/20260506-154414-52878/test-1102752791 show /usr/bin/git origin -- -change git conf�� /ref/tags/v9 remote.origin.url sv on' --ignore-patgit --stdout ndor/bin/git 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 GOPROXY /usr/bin/git GOSUMDB GOWORK 64/bin/go git rev-�� */*.ts' '**/*.json' --ignore-path ../../../.prettierignore git /usr/bin/git --show-toplevel /usr/lib/git-cor-1 ache/go/1.25.8/xxterm-color 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 '**/*.ts' '**/*.json' --ignore-path ../../../.pr**/*.json GOPROXY /opt/hostedtoolcache/go/1.25.8/x64/bin/go GOSUMDB GOWORK 64/bin/go go env /ref/tags/v9 GO111MODULE sv GOINSECURE GOMOD GOMODCACHE 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 6802784/b470/wor/tmp/gh-aw-merge-2452035826/new.md /usr/bin/git t0 git (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 -json GO111MODULE de_modules/.bin/node GOINSECURE GOMOD GOMODCACHE gh tion�� /repos/actions/github-script/git/ref/tags/v9 --jq ache/go/1.25.8/x64/bin/go GOSUMDB GOWORK /usr/bin/git git (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 --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git _modules/.bin/giinfocmp (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 rev-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git ithub-script/gitinfocmp rev-parse (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 -json GO111MODULE 1/x64/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node GOINSECURE GOMOD GOMODCACHE infocmp tion�� xterm-color GOPROXY /usr/bin/git GOSUMDB GOWORK /usr/bin/infocmp"prettier" --check 'scripts/**/*.js' --ignore-path .prettierignore git (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 node /usr/bin/git /home/REDACTED/worgit git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp --show-toplevel git /usr/bin/git infocmp (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 node /usr/bin/git /home/REDACTED/worgit git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp --get (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 -json GO111MODULE /usr/bin/git GOINSECURE GOMOD GOMODCACHE git /pre�� --show-toplevel GOPROXY /usr/bin/infocmp GOSUMDB GOWORK 64/bin/go infocmp (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 git /usr/bin/gh te '../../../**/git git ache/node/24.14.--show-toplevel gh repo�� view owner/repo /usr/bin/git 4000-39940/test-infocmp git e/git git (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 ctionpins.go /usr/bin/git 4414-52878/test-gh nomaly.go /opt/hostedtoolc/repos/actions/github-script/git/ref/tags/v9 git rev-�� --show-toplevel /opt/hostedtoolc^remote\..*\.gh-resolved$ /usr/bin/git 4414-52878/test-infocmp pkg/workflow/che-1 e/git git (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 xterm-color go /opt/hostedtoolcache/go/1.25.8/xGOMODCACHE Onlymin-integritgit GO111MODULE 7480603/b459/vet--show-toplevel go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 cal/bin/git git /usr/bin/infocmp iant-2010251915/git e odules/npm/node_--show-toplevel infocmp -1 xterm-color 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 test-change git clusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --verify --quiet x86_64/git docker pull�� rhysd/actionlint:latest git /usr/bin/git --binary --output=/tmp/ghrev-parse it 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 --show-toplevel /opt/hostedtoolcGOMOD /usr/bin/git runs/20260506-15go (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 xterm-color (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 xterm-color git /usr/bin/git --verify --quiet ed } } git rev-�� /ref/tags/v9 git sv Gitcustom_branchgit Gitcustom_branchrev-parse ndor/bin/git 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 >=2026-04-29 (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 >=2026-04-06 (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 >=2026-02-05 (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 GOWORK 64/bin/go l GOMOD GOMODCACHE git rev-�� --show-toplevel GOPROXY 64/bin/go GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE ache/node/24.14.GOPROXY 3525�� --bare --initial-branchGOWORK /opt/hostedtoolcache/go/1.25.8/xGOMODCACHE GOSUMDB GOWORK -d go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name origin/feature/test-change..feature/test-change p/bin/sh --verify --quiet modules/@npmcli/--show-toplevel git show�� te 'scripts/**/*.js' --ignore-path .prettierignore --log-level=error --quiet k/gh-aw/gh-aw/actions/setup/node_modules/.bin/node ure/test-change remote.origin.urapi git 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 GOWORK /usr/bin/git -errorsas -ifaceassert -nilfunc git init�� -stringintconv -tests ache/node/24.14.GOMODCACHE (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 GOWORK sv GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE /usr/lib/git-core/git (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name git ache/uv/0.11.10/x86_64/node HEAD l odules/npm/node_user.name git ache�� --get remote.origin.url k/_temp/ghcca-node/node/bin/sh --get ure/test-change r git (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, h3884591226/001' h3884591226/001' (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 est-change..feat--log-level=error 1/x64/bin/git ure/test-change feature/my-work k/_temp/uv-pytho-bool git rev-�� est-change ure/test-change tions/setup/node-nilfunc git add feature.node st-owner-test-re/tmp/js-hash-test-257161671/test-hash.js t git (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 ../../../.prettierignore --quiet in/git *.json' '!../..//opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/link git ode-gyp-bin/git git rev-�� est-change ure/test-change it xterm-color ckout_runtime_orapi it 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 GOWORK /usr/bin/git GOINSECURE GOMOD GOMODCACHE git conf�� licyMinIntegrityGOINSECURE test@example.comGOMOD 64/bin/go GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 GO111MODULE At,event,headBranch,headSha,displayTitle GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE /usr/lib/git-corGO111MODULE (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name git cal/bin/node HEAD l ache/go/1.25.8/x--show-toplevel git ache�� --get remote.origin.url 1/x64/bin/node --get ure/test-change r 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 GOWORK 64/bin/go GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 GO111MODULE /bin/sh GOINSECURE GOMOD GOMODCACHE /bin/sh -c 801026013/001 git-upload-pack GOMOD 64/bin/go l GOWORK _TOKEN"; }; f ache/node/24.14.GOPROXY (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name origin/feature/test-change..feature/test-change (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 GOWORK 64/bin/go GOSUMDB GOWORK 65d38ebd52439266--show-toplevel ache/node/24.14.1/x64/bin/node 7407�� ts.result (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 --jq /opt/hostedtoolcache/go/1.25.8/x64/bin/go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name origin/feature/test-change..feature/test-change nfig/composer/vendor/bin/sh --verify --quiet /origin/feature/--show-toplevel git show�� (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 GOWORK /usr/bin/git GOINSECURE GOMOD GOMODCACHE git rev-�� --show-toplevel GOPROXY 64/bin/go led-with-body-coinfocmp GOWORK (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 GOPROXY ache/go/1.25.8/x64/bin/go GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name origin/feature/test-change..feature/test-change rgo/bin/sh --verify --quiet /origin/feature//repos/actions/github-script/git/ref/tags/v9 git show�� te 'scripts/**/*.js' --ignore-path .prettierignore --log-level=error --quiet ache/node/24.14.1/x64/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/nodexterm-color ure/test-change remote.origin.urapi odules/npm/node_/repos/actions/github-script/git/ref/tags/v9 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 --jq 64/bin/go GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 test@example.comGOWORK sv GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name origin/feature/test-change..feature/test-change At,event,headBranch,headSha,displayTitle --verify --quiet /origin/feature/--show-toplevel git show�� te 'scripts/**/*.js' --ignore-path .prettierignore --log-level=error --quiet k/gh-aw/gh-aw/actions/node_modules/.bin/node ure/test-change remote.origin.ur-1 it 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 (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 GOMOD GOMODCACHE git conf�� /v2.0.0 test@example.comGOWORK sv GOSUMDB GOWORK (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build4197480603/b404/cli.test /tmp/go-build4197480603/b404/cli.test -test.testlogfile=/tmp/go-build4197480603/b404/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-build3406802784/b404/cli.test /tmp/go-build3406802784/b404/cli.test -test.testlogfile=/tmp/go-build3406802784/b404/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true --detach l x86_64/git git rev-�� origin/feature/test-change git ules/.bin/git --verify est-change..feat-c -change git (http block)
    • Triggering command: /tmp/go-build164506160/b404/cli.test /tmp/go-build164506160/b404/cli.test -test.testlogfile=/tmp/go-build164506160/b404/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true rd git 1/x64/bin/node git rev-�� &1 origin/feature/test-change..feature/test-change ork --show-toplevel git 64/bin/bash 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 GOPROXY ache/go/1.25.8/x64/bin/go GOSUMDB GOWORK /opt/hostedtoolc"prettier" --check 'scripts/**/*.js' --ignore-path .prettierignore go env /ref/tags/v9 GO111MODULE sv GOINSECURE GOMOD GOMODCACHE 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/git /ref/tags/v9 git sv git rev-�� --show-toplevel git /usr/bin/infocmp /tmp/gh-aw-test-git remote clusion,workflow--show-toplevel infocmp (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/git /tmp/TestGuardPodu config /usr/bin/git git rev-�� --show-toplevel git /usr/bin/infocmp /tmp/gh-aw-test-git l /usr/bin/git infocmp (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 GOSUMDB GOWORK 64/bin/go (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 --binary --output=/tmp/gh-aw/aw-test-owner-test-repo-feature-test-change.patch.diff.tmp cal/bin/git origin ure-test-change.-1 t git rev-�� ../pkg/workflow/js/**/*.json' ---errorsas origin/feature/test-change..feat-ifaceassert k/gh-aw/node_modules/.bin/git -b feature/test-chainit es/.bin/git git (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 --binary --output=/tmp/gh-aw/aw-test-owner-test-repo-feature-test-change.patch.diff.tmp tnet/tools/git a85dbd2b46fb8158/opt/hostedtoolcache/node/24.14.1/x64/bin/node on nfig/composer/ve'full-sweep (enforce_all)' git rev-�� ub/workflows origin/feature/test-change..feat-ifaceassert 64/pkg/tool/linux_amd64/cgo npx prettier --wgit infocmp /origin/feature/--show-toplevel 64/pkg/tool/linux_amd64/cgo (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 (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 --verify --quiet tnet/tools/git est-change --stdout /home/REDACTED/wor--show-toplevel git diff�� th .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json --output=/tmp/gh-aw/aw-test-owne--ignore-path 1/x64/lib/node_modules/npm/node_../../../.prettierignore (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 json' --ignore-path ../../../.pr**/*.json ure/test-change tions/setup/node_modules/.bin/gi../../../.prettierignore --name-only HEAD 64/bin/git e/git-remote-https show�� th .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json --quiet ode_modules/.bin/node HEAD patch.diff.tmp bin/git git (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 GOSUMDB GOWORK bin/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 GOSUMDB GOWORK rgo/bin/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 GOSUMDB GOWORK 64/bin/go (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 {commit} (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 iant-3804585513/.github/workflows --quiet gin/feature/my-work est-change --stdout ndor/bin/git git show�� th .prettierignore --log-level=e!../../../pkg/workflow/js/**/*.json --quiet ode_modules/.bin/node axlifetime=\(.*\git ure-test-change.rev-parse e/test-change git (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 iant-1535555009/.github/workflows ure/test-change bin/git rite '../../../*gh HEAD /snap/bin/git git show�� th .prettierignore --log-level=error --quiet t HEAD patch.diff.tmp tions/setup/node--get pins synced sucremote.origin.url (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 -json GO111MODULE ules/.bin/node GOINSECURE GOMOD GOMODCACHE git tion�� ithub-script/git--detach GOPROXY bject.type] | @tsv GOSUMDB GOWORK /opt/hostedtoolc"prettier" --check 'scripts/**/*.js' --ignore-path .prettierignore git (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 git /usr/bin/git /tmp/gh-aw-test-git rev-parse e/git git rev-�� --show-toplevel e/git /usr/bin/git /tmp/TestGuardPogit config /usr/bin/git git (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 git /usr/bin/git /tmp/gh-aw-test-git rev-parse (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 b/workflows (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv --binary --output=/tmp/gh-aw/aw-test-owner-test-repo-feature-test-change.patch.diff.tmp odules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/sh REDACTED ure-test-change./tmp/test-expr-2235535752.js e/test-change git rev-�� ../pkg/workflow/js/**/*.json' --ignore-path ../../../.prettierignore origin/feature/test-change..feature/test-change e_modules/.bin/git feature.md git ache/node/24.14.1/x64/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv path .prettierignore --log-level=error 2>&1 --quiet nge:refs/remotes/origin/feature/test-change a85dbd2b46fb8158git on /git git rev-�� ../pkg/workflow/js/**/*.json' ---errorsas origin/feature/test-change..feat-ifaceassert cal/bin/git npx prettier --wgit infocmp _modules/.bin/git 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 (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion est-change..featgit ure/test-change erignore git rev-�� te '../../../**/*.json' '!../../../pkg/workflow/js/**/*.json' ---errorsas git ache/node/24.14.1/x64/bin/node est-change remote.origin.urrev-parse /origin/feature/--show-toplevel /bin/sh (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion ure/test-change -aw/aw-test-ownerev-parse erignore git rev-�� 4414-52878/test-854012322/.github/workflows git /usr/bin/git origin est-change..feat-1 test-change 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 (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo -main/dist/gh-gpGOMODCACHE (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state /usr/bin/git remote.origin.urgh (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 GOSUMDB GOWORK (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name h ../../../.prettierignore change.bundle b194ee1ff5abd238-d ure/test-change /tmp/gh-aw/aw-te/home/REDACTED/work/gh-aw/gh-aw/actions/setup/js/node_modules/.bin/pre�� ache/node/24.14.--write git rev-�� w/js/**/*.json' --ignore-path git test-change .test.cjs push_tinfocmp est-change..feat-1 1/x64/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name h ../../../.prettierignore change.bundle ache/go/1.25.8/x64/bin/git *.json' '!../../node git 64/bin/node git rev-�� w/js/**/*.json' --ignore-path origin/feature/t../../../.prettierignore 64/bin/git scripts synced node --jq .cjs git (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch --show-toplevel s 64/bin/go GOSUMDB GOWORK 64/bin/go git init�� (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch "prettier" --write '**/*.cjs' '**/*.ts' '**/*.json' --ignore-path ../../../.pret.prettierignore git 6802784/b465/vet.cfg est-change origin/feature/trev-parse it sh -c f/tags/v999.999.999 git sv --verify r-test-repo-feat-1 run-script/lib/nxterm-color ache/node/24.14.1/x64/bin/node (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch "prettier" --write '**/*.cjs' '**/*.ts' '**/*.json' --ignore-path ../../../.prettierignore git ache/node/24.14.1/x64/bin/node --binary est-change..featrev-parse 64/bin/git node t-12�� /ref/tags/v9 --write sv !../../../pkg/woinfocmp --ignore-path ../../../.prettixterm-color ache/node/24.14.1/x64/bin/node (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 6, 2026

@copilot review all comments

Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 6, 2026

@copilot review all comments

Reviewed all PR comments. The actionable safety feedback is already implemented in 68f366d (with follow-up clarification in 5596dbb), and I confirmed there are no remaining unaddressed actionable comments for this PR.

@pelikhan pelikhan merged commit 6f49d9c into main May 6, 2026
56 of 60 checks passed
@pelikhan pelikhan deleted the copilot/set-bundle-mode-default branch May 6, 2026 20:16
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.

3 participants