Skip to content

fix: sanitize repo-memory filenames before artifact upload to prevent NTFS character failures#29520

Merged
pelikhan merged 5 commits intomainfrom
copilot/aw-fix-glossary-maintainer
May 1, 2026
Merged

fix: sanitize repo-memory filenames before artifact upload to prevent NTFS character failures#29520
pelikhan merged 5 commits intomainfrom
copilot/aw-fix-glossary-maintainer

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 1, 2026

The Glossary Maintainer agent job failed because the Copilot agent created a file named Can-we-have-a-PR?.md in /tmp/gh-aw/repo-memory/default/. GitHub Actions artifact upload rejects filenames containing NTFS-incompatible characters (? : * | < > "), causing a hard error that failed the entire agent job.

Changes

  • pkg/workflow/repo_memory.gogenerateRepoMemoryArtifactUpload() emits a sanitization step (with continue-on-error: true) before each repo-memory artifact upload. The step calls sanitize_repo_memory_filenames.sh via ${RUNNER_TEMP}/gh-aw/actions/ and passes the memory directory via MEMORY_DIR env var.

  • actions/setup/sh/sanitize_repo_memory_filenames.sh (new) — Renames files whose names contain NTFS-forbidden characters, replacing them with -:

    • When the directory is a git working tree: uses git mv for tracked files (preserving git history) and mv for untracked files.
    • When the directory is a plain directory (e.g. when the repo-memory branch was not cloned): falls back to find+mv for all files.
    • Handles rename collisions (e.g. a?.md and a*.md both sanitizing to a-.md) by appending a numeric suffix (a--1.md), including detection of broken symlinks.
  • Applies to both wiki and non-wiki repo-memory modes.

  • All 205 workflow lock files recompiled.

Copilot AI linked an issue May 1, 2026 that may be closed by this pull request
Copilot AI and others added 2 commits May 1, 2026 11:08
Copilot AI changed the title [WIP] Fix glossary maintainer workflow failure fix: sanitize repo-memory filenames before artifact upload to prevent NTFS character failures May 1, 2026
Copilot AI requested a review from pelikhan May 1, 2026 11:15
Comment on lines +1116 to +1125
shell: bash
run: |
find /tmp/gh-aw/repo-memory/default -depth -type f 2>/dev/null | while IFS= read -r f; do
dir=$(dirname "$f")
base=$(basename "$f")
safe=$(printf '%s' "$base" | sed 's/[?:*|<>"]/-/g')
if [ "$base" != "$safe" ]; then
mv -- "$f" "$dir/$safe" && echo "Renamed: $base -> $safe"
fi
done
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 repo-memory is backed by git, use git commands. Move shell code to script in actions/setup/sh

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.

Done in 57c4de8. Moved the sanitization to actions/setup/sh/sanitize_repo_memory_filenames.sh which uses git mv for tracked files (so the rename appears in git history) and mv for untracked files the agent wrote. The inline shell block in repo_memory.go is replaced with bash "${RUNNER_TEMP}/gh-aw/actions/sanitize_repo_memory_filenames.sh" + MEMORY_DIR env var, matching the same pattern used by clone_repo_memory_branch.sh and commit_cache_memory_git.sh.

…s.sh using git commands

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/9aa6d1b9-1ab1-40c6-9621-41ec2a0e2827

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

Copilot AI commented May 1, 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 /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 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 I2dQlxn/A2HMZ_Be-1 (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 */*.json&#39; &#39;!../.remote.origin.url --local ache/uv/0.11.8/x86_64/bash http.https://gitgit (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv */*.json&#39; &#39;!../.-f --local k/gh-aw/gh-aw/.g-f http.https://gitgit (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 */*.json&#39; &#39;!../../../pkg/workfloremote.origin.url --local bin/bash http.https://gitgit (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch *.json&#39; &#39;!../../../pkg/workflow/-f --get nfig/composer/vendor/bin/bash (http block)

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

Copilot AI requested a review from pelikhan May 1, 2026 11:29
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Hey @app/copilot-swe-agent 👋 — great catch on the NTFS-incompatible filename issue in repo-memory! Sanitizing characters like ?, :, *, etc. before artifact upload is exactly the right fix, and the PR description clearly explains the root cause.

One thing that would help get this across the finish line:

  • Add testspkg/workflow/repo_memory.go has new sanitization logic in generateRepoMemoryArtifactUpload(), but there are no corresponding *_test.go changes. A unit test covering at least:
    1. A filename with no forbidden characters — should remain unchanged.
    2. A filename with one or more NTFS-forbidden characters (? : * | < > ") — should have them replaced with -.
    3. The sanitization step being present in the generated YAML output.

If you'd like a hand, you can assign this prompt to your coding agent:

Add unit tests for the filename sanitization logic in pkg/workflow/repo_memory.go.
Specifically, test generateRepoMemoryArtifactUpload() to cover:
1. A repo-memory file with a clean filename — the sanitization step should be emitted and the filename should be unchanged.
2. A repo-memory file whose name contains NTFS-forbidden characters (? : * | < > ") — the sanitization step should rename it by replacing each forbidden character with '-'.
3. Both wiki and non-wiki repo-memory modes produce the sanitization step.
Place tests in pkg/workflow/repo_memory_test.go (or the existing test file for that package).

Generated by Contribution Check · ● 1.6M ·

@pelikhan pelikhan marked this pull request as ready for review May 1, 2026 14:23
Copilot AI review requested due to automatic review settings May 1, 2026 14:23
@github-actions github-actions Bot mentioned this pull request May 1, 2026
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 workflow-level guard to prevent GitHub Actions artifact uploads from failing when repo-memory contains NTFS-incompatible filenames (e.g., ? : * | < > "), by sanitizing filenames prior to uploading repo-memory artifacts.

Changes:

  • Emit a new “Sanitize repo-memory/wiki-memory filenames” step before each repo-memory artifact upload step.
  • Introduce actions/setup/sh/sanitize_repo_memory_filenames.sh to rename tracked files via git mv and untracked files via mv.
  • Recompile workflow lock files to include the new sanitization step.
Show a summary per file
File Description
pkg/workflow/repo_memory.go Generates an always-run sanitization step before uploading each repo-memory artifact.
actions/setup/sh/sanitize_repo_memory_filenames.sh Adds a bash script to rename files with NTFS-forbidden characters before artifact upload.
.github/workflows/workflow-health-manager.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/weekly-blog-post-writer.lock.yml Includes the new sanitization step prior to wiki-memory artifact upload.
.github/workflows/technical-doc-writer.lock.yml Includes the new sanitization step prior to wiki-memory artifact upload.
.github/workflows/smoke-ci.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/security-compliance.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/pr-triage-agent.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/metrics-collector.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/glossary-maintainer.lock.yml Includes the new sanitization step prior to wiki-memory artifact upload.
.github/workflows/firewall-escape.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/discussion-task-miner.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/developer-docs-consolidator.lock.yml Includes the new sanitization step prior to wiki-memory artifact upload.
.github/workflows/delight.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/deep-report.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/daily-testify-uber-super-expert.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/daily-sentrux-report.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/daily-news.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/daily-community-attribution.lock.yml Includes the new sanitization step prior to wiki-memory artifact upload.
.github/workflows/daily-code-metrics.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/daily-cli-performance.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-token-optimizer.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-token-audit.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-session-insights.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-pr-prompt-analysis.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-pr-nlp-analysis.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-cli-deep-research.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/copilot-agent-analysis.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/code-scanning-fixer.lock.yml Includes the new sanitization step prior to repo-memory artifact upload for a non-default memory ID.
.github/workflows/audit-workflows.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.
.github/workflows/agent-performance-analyzer.lock.yml Includes the new sanitization step prior to repo-memory artifact upload.

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/sh/sanitize_repo_memory_filenames.sh:64

  • Same collision/overwrite risk exists for untracked files: mv -- "$filepath" "$newpath" will fail if the sanitized destination already exists, and with set -euo pipefail the whole step fails. Add the same unique-name or skip-with-warning logic here to keep sanitization best-effort.
while IFS= read -r -d '' filepath; do
  base=$(basename "$filepath")
  safe=$(sanitize_name "$base")
  if [ "$base" != "$safe" ]; then
    dir=$(dirname "$filepath")
    if [ "$dir" = "." ]; then
      newpath="$safe"
    else
      newpath="$dir/$safe"
    fi
    mv -- "$filepath" "$newpath"
    echo "Renamed untracked: $filepath -> $newpath"
  fi
done < <(git ls-files --others -z 2>/dev/null)
  • Files reviewed: 31/31 changed files
  • Comments generated: 4

Comment on lines +507 to +512
fmt.Fprintf(builder, " - name: Sanitize %s filenames (%s)\n", memoryLabel, memory.ID)
builder.WriteString(" if: always()\n")
builder.WriteString(" env:\n")
fmt.Fprintf(builder, " MEMORY_DIR: %s\n", memoryDir)
builder.WriteString(" run: bash \"${RUNNER_TEMP}/gh-aw/actions/sanitize_repo_memory_filenames.sh\"\n")

Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

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

The sanitization step is added with if: always() but without continue-on-error: true. Since the called script uses set -euo pipefail, any rename failure (e.g., name collision) will fail this step and can fail the entire job, which defeats the purpose of preventing artifact upload failures. Consider marking this step continue-on-error: true and/or ensuring the script never exits non-zero for recoverable rename issues.

Copilot uses AI. Check for mistakes.
Comment on lines +500 to +514
// Step: Sanitize filenames before upload to prevent artifact upload failures.
// GitHub Actions artifacts are stored on NTFS-compatible filesystems, so filenames
// must not contain: ? : * | < > " (among other characters).
// The agent may create files with these characters (e.g. "Can-we-have-a-PR?.md"),
// which causes the upload-artifact action to fail with a hard error.
// The script uses git commands (git mv for tracked files, mv for untracked) since
// repo-memory is backed by a git working tree.
fmt.Fprintf(builder, " - name: Sanitize %s filenames (%s)\n", memoryLabel, memory.ID)
builder.WriteString(" if: always()\n")
builder.WriteString(" env:\n")
fmt.Fprintf(builder, " MEMORY_DIR: %s\n", memoryDir)
builder.WriteString(" run: bash \"${RUNNER_TEMP}/gh-aw/actions/sanitize_repo_memory_filenames.sh\"\n")

// Step: Upload repo-memory directory as artifact
fmt.Fprintf(builder, " - name: Upload %s artifact (%s)\n", memoryLabel, memory.ID)
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

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

New behavior (emitting a sanitization step before artifact upload) isn’t covered by existing repo-memory generation tests. Add a unit test asserting the generated YAML includes the sanitize step (and that it appears before the upload-artifact step) to prevent regressions when the workflow templates change.

Copilot uses AI. Check for mistakes.
Comment on lines +22 to +25
if [ ! -d ".git" ]; then
echo "Not a git repository: $MEMORY_DIR — skipping sanitization"
exit 0
fi
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

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

The script exits early when $MEMORY_DIR/.git is missing. However, repo-memory can be a plain directory (e.g., when clone_repo_memory_branch.sh skips git init because the branch is missing and create-orphan is false), and files in that directory can still break artifact upload. Consider still performing a best-effort find ... -depth rename with mv even when it’s not a git repo, and only use git mv when git metadata is available.

Copilot uses AI. Check for mistakes.
Comment on lines +34 to +46
while IFS= read -r -d '' filepath; do
base=$(basename "$filepath")
safe=$(sanitize_name "$base")
if [ "$base" != "$safe" ]; then
dir=$(dirname "$filepath")
if [ "$dir" = "." ]; then
newpath="$safe"
else
newpath="$dir/$safe"
fi
git mv -- "$filepath" "$newpath"
echo "Renamed tracked: $filepath -> $newpath"
fi
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

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

Renames can collide (e.g., a?.md and a*.md both sanitize to a-.md). With set -e, a failed git mv/mv due to an existing destination will exit non-zero and fail the workflow. Add collision handling (e.g., generate a unique suffix when $newpath already exists, or skip with a warning) and avoid overwriting existing files.

This issue also appears on line 51 of the same file.

Copilot uses AI. Check for mistakes.
@pelikhan
Copy link
Copy Markdown
Collaborator

pelikhan commented May 1, 2026

@copilot review all comments

Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 1, 2026

@copilot review all comments

All four reviewer comments addressed in 33ff510:

  1. continue-on-error: true — Added to the sanitize step in repo_memory.go so a rename failure never blocks artifact upload.
  2. Non-git directory fallback — Script no longer exits early when .git is absent; it uses find+mv on plain directories.
  3. Collision handling — Added unique_path() helper that appends a numeric suffix (-1, -2, …) when the sanitized destination already exists. Fixed to also detect broken symlinks via [ ! -L "$candidate" ].
  4. Unit test — Added TestGenerateRepoMemoryArtifactUpload covering both wiki and non-wiki memories, asserting the sanitize step precedes upload, continue-on-error: true appears between if: always() and env:, MEMORY_DIR is set correctly, and the script is called.

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 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 4063413455 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE 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 GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 1861890196/.github/workflows GO111MODULE tartedAt,updatedAt,event,headBranch,headSha,displayTitle GOINSECURE GOMOD GOMODCACHE 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 GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json GO111MODULE tartedAt,updatedAt,event,headBranch,headSha,displayTitle GOINSECURE GOMOD GOMODCACHE 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 --check **/*.cjs 64/bin/go **/*.json --ignore-path ../../../.prettigo build -ldflags &#34;-s -w -X main.version=57c4de8-dirty&#34; -o gh-aw ./cmd/gh-aw go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env h ../../../.pret.prettierignore GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GOMODCACHE go /usr/bin/git y_with_repos_arrgit GO111MODULE ache/go/1.25.8/x--show-toplevel git rev-�� --show-toplevel go /usr/bin/git -json GO111MODULE k git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv -v go /usr/bin/git y_with_repos=pubgit GO111MODULE ache/go/1.25.8/x--show-toplevel git rev-�� --show-toplevel go /usr/bin/git -json GO111MODULE k 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 /tmp/TestCompileUpdateDiscussionFieldEnforcement4178370514/001 rev-parse /usr/bin/docker -json GO111MODULE 64/bin/go docker pull�� test/concurrent-image:v1.0.0 go /usr/bin/git -json GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv /tmp/gh-aw-test-runs/20260501-144956-41705/test-2472383466/custom/workflows remote /usr/bin/git -json GO111MODULE 64/bin/go git conf�� user.email test@example.com /usr/bin/git -json GO111MODULE ode_modules/.bin--show-toplevel git (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 ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env OnlyCompiledOutput4198525940/001--limit GO111MODULE /opt/hostedtoolcache/go/1.25.8/x--created 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 --show-toplevel go /usr/bin/git -json GO111MODULE cfg git rev-�� --show-toplevel go /usr/bin/git 3168425700 GO111MODULE ache/go/1.25.8/x--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 node /usr/bin/git /ref/tags/v9 node sv git rev-�� --show-toplevel git /usr/bin/git /tmp/TestGuardPogit l /usr/bin/git 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 ithub/workflows/artifacts-summary.md GO111MODULE 1/x64/bin/node GOINSECURE GOMOD GOMODCACHE 1/x64/bin/node env runs/20260501-144811-25526/test-1601845607/.github/workflows GO111MODULE Name,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv 4811-25526/test-3168425700 GO111MODULE /usr/bin/git GOINSECURE GOMOD GOMODCACHE git rev-�� --show-toplevel l ache/node/24.14.1/x64/bin/node GOSUMDB GOWORK 64/bin/go ache/node/24.14.1/x64/bin/node (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv . -tests /usr/bin/git prettier --check 64/bin/go git -C /tmp/gh-aw-test-runs/20260501-144811-25526/test-2204064339/.github/workflows s/2/artifacts (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 --show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile /usr/bin/git 4811-25526/test-git GO111MODULE e/git git rev-�� --show-toplevel e/git /usr/bin/git mplied GO111MODULE /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 --show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git ithub/workflows/git GO111MODULE ache/node/24.14.1/x64/bin/node git rev-�� --show-toplevel go /usr/bin/git bility_SameInputgit GO111MODULE 4248874/b306/vet--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 GOSUMDB GOWORK 64/bin/go GOINSECURE GOMOD GOMODCACHE 4668901/b417/impGO111MODULE -c che/go-build/02/GOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK run-script/lib/n-json /opt/hostedtoolcGO111MODULE (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv GOSUMDB GOWORK 64/bin/go GOINSECURE GOMOD GOMODCACHE sh -c &#34;prettier&#34; --cheGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcGO111MODULE (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE node /hom�� --check **/*.cjs 64/bin/go **/*.json --ignore-path ../../../.prettiactions/setup-cli/install.sh go (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 /usr/bin/git -json GO111MODULE 64/bin/go git arch�� --remote=REDACTED v1.0.0 /usr/bin/git 2602365613/.githgit GO111MODULE 64/pkg/tool/linu--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 go /usr/bin/git -json GO111MODULE ules/.bin/sh /usr/bin/git remo�� -v go /usr/bin/git */*.ts&#39; &#39;**/*.jsgit GO111MODULE 64/pkg/tool/linu--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 /tmp/gh-aw-test-runs/20260501-144811-25526/test--f s/5/artifacts /usr/bin/git log.showsignaturgit log 64/bin/go git conf�� --get remote.origin.url r,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,disp--show-toplevel -json GO111MODULE 64/bin/go 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 go /usr/bin/docker -json GO111MODULE 64/bin/go docker pull�� test/race-image:v1.0.0 go /usr/bin/git 4248/001/stabiligit GO111MODULE At,event,headBra--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 138/001 go /opt/hostedtoolcache/node/24.14.1/x64/bin/node ath ../../../.prgit GO111MODULE 64/bin/go node /tmp�� /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/archie.md go r,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,disp--show-toplevel re GO111MODULE 64/bin/go 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 -json GO111MODULE ache/node/24.14.1/x64/bin/node GOINSECURE GOMOD GOMODCACHE go t-29�� bility_SameInputSameOutput390506nonexistent/repo GO111MODULE 308627/b465/vet.cfg GOINSECURE GOMOD GOMODCACHE /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv licyBlockedUsersApprovalLabelsCompiledOutput2343017772/001 GOPROXY /usr/bin/git GOSUMDB GOWORK 64/bin/go git rev-�� --show-toplevel go ache/node/24.14.1/x64/bin/node -json flow-12345 64/bin/go ache/node/24.14.1/x64/bin/node (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv run --auto epo.git --detach --check 64/bin/go git rev-�� --show-toplevel s/4/artifacts /usr/bin/git --porcelain go 64/bin/go git (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 ons-test914907088 -tests /usr/bin/git l --check 64/bin/go git -C mpleWorkflow3803178920/001 rev-parse /usr/bin/gh -json GO111MODULE 64/bin/go gh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv /orgs/test-owner/actions/secrets --jq /opt/hostedtoolcache/node/24.14.1/x64/bin/node -json GO111MODULE 64/bin/go node /tmp�� /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/ai-moderator.md go /usr/bin/git h ../../../.pretgit GO111MODULE 64/bin/go git (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv --show-toplevel /usr/lib/git-core/git /usr/bin/git run --auto /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --git-dir go e/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git ansitiveImports3git go /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git GOMODCACHE go /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch --show-toplevel git /usr/bin/git --show-toplevel go /usr/bin/git git rev-�� --show-toplevel git repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } --show-toplevel ache/go/1.25.8/x-C /usr/bin/git git (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 go /usr/bin/git rdian.md GO111MODULE 64/bin/go git rev-�� --show-toplevel go /usr/bin/git -json n.go 64/pkg/tool/linu--show-toplevel 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 go /usr/bin/infocmp -json GO111MODULE tions/setup/node--show-toplevel infocmp -1 xterm-color go /usr/bin/git */*.ts&#39; &#39;**/*.jsgit GO111MODULE 64/bin/go 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 ub.actor }} remote clusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle &#34;prettier&#34; --chegit golangci-lint 64/bin/go gh api ansitiveImports3363920938/001 --jq /opt/hostedtoolcache/node/24.14.1/x64/bin/node -json GO111MODULE 64/bin/go node (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 ons-test347167206 go /usr/bin/git -json GO111MODULE 64/bin/go git conf�� user.email test@example.com om/org1/repo.git -json GO111MODULE 64/bin/go /opt/hostedtoolcache/node/24.14.1/x64/bin/node (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 ithub-script/git/ref/tags/v9 rev-parse bject.type] | @tsv &#34;prettier&#34; --chegit /bin/sh 64/bin/go git -C /tmp/compile-all-instructions-test-3874003519/.github/workflows l /usr/bin/infocmp -json GO111MODULE 64/bin/go infocmp (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 341709/001 go /usr/bin/git -json GO111MODULE /node git rev-�� --show-toplevel (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-04-24 GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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-01 GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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-01-31 GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env ut4198525940/001--limit GO111MODULE ache/go/1.25.8/x--created GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env edOutput2275967363/001 51303877d3ad8cd5b ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json GO111MODULE 1/x64/bin/node GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/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 run download 12345 --dir test-logs/run-12345 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env y_with_repos_array_c3424114698/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go 8d51�� -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env y_with_repos=public_3542012955/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 itbranch_with_hyphen3426976724/002/work 64/bin/go GOINSECURE GOMOD GOMODCACHE go env /001/inlined-b.md GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name GO111MODULE 64/bin/node GOINSECURE GOMOD GOMODCACHE go 8d51�� -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 mLsRemoteWithRealGitbranch_with_hyphen3426976724/001&#39; 64/bin/go GOINSECURE GOMOD GOMODCACHE go env ut4198525940/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 3ad8cd5b:go.mod GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linuTest User env 1677369057/.github/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env /001/noflag-a.md GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env edOutput2275967363/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE 3ad8cd5b (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linutest@example.com env 1677369057 GO111MODULE k GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/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 run download 4 --dir test-logs/run-4 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env edOutput2275967363/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env mpiledOutput2343--limit GO111MODULE ache/go/1.25.8/x--created GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 GO111MODULE 64/pkg/tool/linux_amd64/asm GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/asm env rity2086284646/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json GO111MODULE k GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --check (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 GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE cessfully&#34;; \ else \ echo &#34;��� (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 go env 3200547779/.github/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build323308627/b404/cli.test /tmp/go-build323308627/b404/cli.test -test.testlogfile=/tmp/go-build323308627/b404/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true GOINSECURE GOMOD GOMODCACHE node /opt�� prettier --check 64/bin/go **/*.ts **/*.json --ignore-path go (http block)
    • Triggering command: /tmp/go-build1194248874/b404/cli.test /tmp/go-build1194248874/b404/cli.test -test.testlogfile=/tmp/go-build1194248874/b404/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE /node GOINSECURE GOMOD GOMODCACHE go (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 go /usr/bin/git 4811-25526/test-git GO111MODULE /opt/hostedtoolc--show-toplevel git rev-�� --show-toplevel go /usr/bin/git -json GO111MODULE e/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 go /usr/bin/git 4956-41705/test-git GO111MODULE ache/go/1.25.8/x--show-toplevel git rev-�� --show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git -json GO111MODULE 1/x64/bin/node 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 -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env audit-workflows.md GO111MODULE cfg GOINSECURE GOMOD GOMODCACHE 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 itcustom_branch3809377320/001 itcustom_branch3809377320/002/work n-dir/node GOINSECURE GOMOD GOMODCACHE go 1/x6�� y_with_repos_array_c3469226335/001 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE ode_modules/.bin/node GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go 0671�� -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE h-aw.wasm; \ AFTER=$(wc -c &lt; g (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 GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE 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 -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env Gitmaster_branch1490487103/001&#39; Gitmaster_branch1490487103/001&#39; 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go 0451�� -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 4050446346 GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env sRemoteWithRealGitmain_branch1840671746/001 sRemoteWithRealGitmain_branch1840671746/002/work cfg GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv &#39;**/*.ts&#39; &#39;**/*.json&#39; --ignore-path ../../../.pr**/*.json GO111MODULE 1/x64/bin/node GOINSECURE GOMOD GOMODCACHE go 1/x6�� ithout_min-integrity1123188122/0remote.origin.url GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (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 GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/compile env -json GO111MODULE er.test GOINSECURE GOMOD GOMODCACHE er.test (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion GOINSECURE GOMOD GOMODCACHE go ranc�� -json GO111MODULE .cfg GOINSECURE GOMOD GOMODCACHE go (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 64/bin/go **/*.json --ignore-path ../../../.pretti-x go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo 64/bin/go .prettierignore GOWORK 64/bin/go go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env 4811-25526/test-source-field-variant-3272560832 GO111MODULE k GOINSECURE GOMOD GOMODCACHE go (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 --check **/*.cjs 64/bin/go **/*.json --ignore-path ../../../.prettiactions/setup-cli/install.sh go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env h ../../../.pret.prettierignore GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch b/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE 1/x64/bin/node GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch licyMinIntegrityOnlyCompiledOutptest-logs/run-3 git /opt/hostedtoolcache/node/24.14.1/x64/bin/node tierignore log 64/bin/go node /tmp�� /tmp/TestHashConsistency_GoAndJavaScript113839927/001/test-frontmatter-with-env-template-expressgit go /usr/lib/git-core/git -json GO111MODULE 64/bin/go /usr/lib/git-core/git (http block)

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

@pelikhan pelikhan merged commit f5b51c4 into main May 1, 2026
@pelikhan pelikhan deleted the copilot/aw-fix-glossary-maintainer branch May 1, 2026 14:57
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.

[aw] Glossary Maintainer failed

3 participants