Skip to content

[jsweep] Clean resolve_mentions_from_payload.cjs#26809

Merged
pelikhan merged 5 commits intomainfrom
jsweep/clean-resolve-mentions-from-payload-f36980010f05d1b7
Apr 17, 2026
Merged

[jsweep] Clean resolve_mentions_from_payload.cjs#26809
pelikhan merged 5 commits intomainfrom
jsweep/clean-resolve-mentions-from-payload-f36980010f05d1b7

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Summary

Cleaned actions/setup/js/resolve_mentions_from_payload.cjs by extracting repetitive helpers and adding comprehensive test coverage.

Context type: github-script (uses core, github, context globals)

Changes

Code improvements

The switch statement in resolveAllowedMentionsFromPayload had ~100 lines of repetitive user/assignee extraction logic repeated across 4-5 cases. Extracted three focused helpers:

  • pushNonBotUser(users, user) — pushes a non-bot user's login to an array; handles null/undefined safely
  • pushNonBotAssignees(users, assignees) — iterates assignees array, delegating to pushNonBotUser
  • extractKnownAuthorsFromPayload(context) — encapsulates the full switch statement cleanly

The main resolveAllowedMentionsFromPayload function now delegates extraction to extractKnownAuthorsFromPayload and is easier to follow. The redundant allowAllMentions variable (assigned but never used) was also removed.

All three helpers are exported for direct testing and potential reuse.

Test coverage (new file: resolve_mentions_from_payload.test.cjs)

Added 30 tests covering:

  • pushNonBotUser: regular user, bot user, null, missing login
  • pushNonBotAssignees: mixed bots/humans, null, empty array
  • extractKnownAuthorsFromPayload: all 9 event types (issues, pull_request, pull_request_target, issue_comment, pull_request_review_comment, pull_request_review, discussion, discussion_comment, release, workflow_dispatch) + unknown event fallback + bot filtering
  • resolveAllowedMentionsFromPayload: null guards, disabled mentions, allowContext:false, team members mode, extra authors, max limit, limit warning, error recovery, allowed list config

Validation ✅

  • Formatting: npm run format:cjs
  • Linting: npm run lint:cjs
  • Type checking: npm run typecheck
  • Tests: npm run test:js -- --no-file-parallelism ✓ (30/30 new tests pass; 4 pre-existing unrelated failures unchanged)

Warning

⚠️ Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • invalid.example.invalid

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "invalid.example.invalid"

See Network Configuration for more information.

Generated by jsweep - JavaScript Unbloater · ● 3.2M ·

  • expires on Apr 19, 2026, 4:52 AM UTC

Extract pushNonBotUser, pushNonBotAssignees, and extractKnownAuthorsFromPayload
helpers to eliminate the repetitive switch-case pattern that appeared in 4-5
case blocks. Reduces ~100 lines of repetitive code to clean, tested helpers.

Also exports the new helpers for direct testing and reuse.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@pelikhan pelikhan marked this pull request as ready for review April 17, 2026 05:03
Copilot AI review requested due to automatic review settings April 17, 2026 05:03
@github-actions github-actions bot mentioned this pull request Apr 17, 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

Refactors resolve_mentions_from_payload.cjs to reduce repetitive payload parsing logic by extracting helper functions, and adds a dedicated Vitest suite to cover payload-author extraction and mention-resolution behavior.

Changes:

  • Extracted helper functions to push non-bot users/assignees and to extract known authors by event type.
  • Simplified resolveAllowedMentionsFromPayload by delegating payload parsing to the new helper.
  • Added a new Vitest test file covering the new helpers and key resolveAllowedMentionsFromPayload behaviors.
Show a summary per file
File Description
actions/setup/js/resolve_mentions_from_payload.cjs Extracts reusable helpers for payload author extraction and integrates them into mention resolution.
actions/setup/js/resolve_mentions_from_payload.test.cjs Adds targeted unit tests for the new helpers and the main resolver function.

Copilot's findings

Tip

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

  • Files reviewed: 2/2 changed files
  • Comments generated: 3

Comment on lines +40 to +47
function extractKnownAuthorsFromPayload(context) {
const users = /** @type {string[]} */ [];
const { eventName, payload } = context;

switch (eventName) {
case "issues":
pushNonBotUser(users, payload.issue?.user);
pushNonBotAssignees(users, payload.issue?.assignees);
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

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

extractKnownAuthorsFromPayload assumes context.payload is always defined (const { eventName, payload } = context;), but then dereferences payload.* in every case. Since this helper is now exported, calling it with a partial/undefined context will throw a TypeError. Consider making it resilient by defaulting payload to {} (and optionally early-returning [] if !context or typeof context !== "object").

Copilot uses AI. Check for mistakes.
break;

case "workflow_dispatch":
users.push(context.actor);
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

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

In the workflow_dispatch case, users.push(context.actor) can push a non-string/undefined value into an array documented as string[]. This can later produce @undefined in fakeText and trigger an unnecessary API lookup, or return undefined when allowTeamMembers is false. Recommend guarding with typeof context.actor === "string" && context.actor.length > 0 (and/or filtering falsy entries before returning).

Suggested change
users.push(context.actor);
if (typeof context.actor === "string" && context.actor.length > 0) {
users.push(context.actor);
}

Copilot uses AI. Check for mistakes.
@@ -0,0 +1,353 @@
// @ts-check
import { describe, it, expect, beforeEach, afterEach, vi } from "vitest";
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

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

afterEach is imported from vitest but never used in this test file. Please remove the unused import to keep the test clean and avoid unused-import lint failures if the config tightens.

Suggested change
import { describe, it, expect, beforeEach, afterEach, vi } from "vitest";
import { describe, it, expect, beforeEach, vi } from "vitest";

Copilot uses AI. Check for mistakes.
@github-actions
Copy link
Copy Markdown
Contributor Author

🧪 Test Quality Sentinel Report

Test Quality Score: 75/100

⚠️ Acceptable — good behavioral coverage with a technical test-inflation flag (see note below)

Metric Value
New/modified tests analyzed 30
✅ Design tests (behavioral contracts) 30 (100%)
⚠️ Implementation tests (low value) 0 (0%)
Tests with error/edge cases 15 (50%)
Duplicate test clusters 0
Test inflation detected Yes — 3.8:1 (see note)
🚨 Coding-guideline violations None

Scoring Breakdown

Component Score Notes
Behavioral Coverage (40 pts) 40/40 All 30 tests verify observable outputs
Error/Edge Case Coverage (30 pts) 15/30 15 of 30 tests cover edge/error paths
Low Duplication (20 pts) 20/20 No copy-paste clusters detected
Proportional Growth (10 pts) 0/10 353 test lines added vs. 93 prod lines (3.8:1)

i️ Inflation note: The 3.8:1 ratio is a mechanical penalty for the rule "test lines added > 2× production lines added." In context this is entirely expected — this PR creates a brand-new test file for code that already existed and was simultaneously being refactored (122 deletions, 93 additions in the production file). The penalty does not reflect actual quality concern.


Test Classification Details

View all 30 test classifications
Test Describe block Classification Edge case?
pushes a regular user login pushNonBotUser ✅ Design No — baseline happy path
skips bot users pushNonBotUser ✅ Design ✓ Bot filtering
skips null user pushNonBotUser ✅ Design ✓ Null input
skips user without login pushNonBotUser ✅ Design ✓ Missing field
pushes non-bot assignees pushNonBotAssignees ✅ Design ✓ Mixed bot/user list
handles null assignees pushNonBotAssignees ✅ Design ✓ Null input
handles empty assignees array pushNonBotAssignees ✅ Design ✓ Empty input
extracts issue author and assignees for issues event extractKnownAuthorsFromPayload ✅ Design No
skips bot issue author extractKnownAuthorsFromPayload ✅ Design ✓ Bot filtering
extracts PR author and assignees for pull_request event extractKnownAuthorsFromPayload ✅ Design No
pull_request_target is handled same as pull_request extractKnownAuthorsFromPayload ✅ Design No
extracts comment author and issue author for issue_comment event extractKnownAuthorsFromPayload ✅ Design No
extracts authors for pull_request_review_comment event extractKnownAuthorsFromPayload ✅ Design No
extracts authors for pull_request_review event extractKnownAuthorsFromPayload ✅ Design No
extracts discussion author for discussion event extractKnownAuthorsFromPayload ✅ Design No
extracts comment and discussion author for discussion_comment event extractKnownAuthorsFromPayload ✅ Design No
extracts release author for release event extractKnownAuthorsFromPayload ✅ Design No
extracts actor for workflow_dispatch event extractKnownAuthorsFromPayload ✅ Design No
returns empty array for unknown event types extractKnownAuthorsFromPayload ✅ Design ✓ Unknown input
returns empty array when context is null resolveAllowedMentionsFromPayload ✅ Design ✓ Null input
returns empty array when github is null resolveAllowedMentionsFromPayload ✅ Design ✓ Null input
returns empty array when core is null resolveAllowedMentionsFromPayload ✅ Design ✓ Null input
returns empty array when mentions explicitly disabled resolveAllowedMentionsFromPayload ✅ Design ✓ Disabled flag
respects allowContext: false by skipping payload extraction resolveAllowedMentionsFromPayload ✅ Design ✓ Config flag
resolves mentions with team members enabled resolveAllowedMentionsFromPayload ✅ Design No
includes extra known authors resolveAllowedMentionsFromPayload ✅ Design No
applies max limit when allowTeamMembers is false resolveAllowedMentionsFromPayload ✅ Design ✓ Boundary condition
warns when mention limit is exceeded with team members disabled resolveAllowedMentionsFromPayload ✅ Design ✓ Limit exceeded
returns empty array and logs warning on error resolveAllowedMentionsFromPayload ✅ Design ✓ Error path
includes allowed list from config regardless of context resolveAllowedMentionsFromPayload ✅ Design No

Flagged Tests — Requires Review

No tests were flagged. All 30 tests verify observable behavioral contracts.

On mocking approach: vi.mock("./resolve_mentions.cjs") and vi.mock("./error_helpers.cjs") are appropriate — they isolate the module under test from its dependencies (which make external API calls). mockCore and mockGithub mock the GitHub Actions runtime and GitHub API client (external I/O), which is the expected pattern. Assertions on mockCore.info / mockCore.warning are legitimate behavioral checks because core is the observable side-effect interface in GitHub Actions.


Language Support

Tests analyzed:

  • 🟨 JavaScript (*.test.cjs): 30 tests (vitest)
  • 🐹 Go (*_test.go): 0 tests changed

Verdict

Check passed. 0% of new tests are implementation tests (threshold: 30%). No coding-guideline violations detected. The test suite comprehensively covers all supported event types, null-guard paths, configuration flags, and error handling for resolve_mentions_from_payload.cjs.


📖 Understanding Test Classifications

Design Tests (High Value) verify what the system does:

  • Assert on observable outputs, return values, or state changes
  • Cover error paths and boundary conditions
  • Would catch a behavioral regression if deleted
  • Remain valid even after internal refactoring

Implementation Tests (Low Value) verify how the system does it:

  • Assert on internal function calls (mocking internals)
  • Only test the happy path with typical inputs
  • Break during legitimate refactoring even when behavior is correct
  • Give false assurance: they pass even when the system is wrong

Goal: Shift toward tests that describe the system's behavioral contract — the promises it makes to its users and collaborators.


References: §24548646480

🧪 Test quality analysis by Test Quality Sentinel · ● 664.9K ·

Copy link
Copy Markdown
Contributor Author

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

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

✅ Test Quality Sentinel: 75/100. Test quality is acceptable — 0% of new tests are implementation tests (threshold: 30%). All 30 new tests verify behavioral contracts; 15 cover error paths and edge cases. No coding-guideline violations detected.

@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot review all comments

Copilot AI and others added 3 commits April 17, 2026 05:23
Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 17, 2026

@copilot review all comments

Addressed all actionable review comments in f6428d3 (plus follow-up test expansion in 04559fc): added defensive context/payload handling, guarded workflow_dispatch actor before push, removed unused afterEach import, and added regression coverage for invalid context/actor inputs. No UI changes in this PR.

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 818483/b238/vet.rev-parse 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 ithub/workflows tmain.go /opt/hostedtoolc--show-toplevel git (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 GO111MODULE h git rev-�� --show-toplevel go /usr/bin/git RequiresMinInteggit GO111MODULE ache/go/1.25.8/x--show-toplevel git (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 -json GO111MODULE x_amd64/compile -Oz --enable-bu/opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOMOD GOMODCACHE x_amd64/compile env -json 1.5.0/internal/x-ifaceassert x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name -json GO111MODULE modules/@npmcli/run-script/lib/node-gyp-bin/sh GOINSECURE GOMOD GOMODCACHE go env h ../../../.prettierignore 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 --show-toplevel nly /usr/bin/git xterm-color t&#34;; \ fi /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git GOMODCACHE go /usr/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 --get remote.origin.url /usr/bin/infocmp -json Hgqea9f-D 64/pkg/tool/linu--show-toplevel infocmp -1 xterm-color 64/pkg/tool/linux_amd64/vet /usr/bin/git 3590753053/.githgit GO111MODULE 64/pkg/tool/linu--show-toplevel 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 go /usr/bin/git plorer.md 7 x_amd64/vet git rev-�� --show-toplevel x_amd64/vet /usr/bin/git -json GO111MODULE n-dir/node 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/TestGuardPolicyMinIntegrityOnlyCompiledOutp-errorsas remote /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linu-nilfunc -json GO111MODULE x_amd64/compile /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linu-tests -o /tmp/go-build380818483/b434/_pkg_.a -trimpath /usr/bin/git -p github.com/githupull -lang=go1.25 git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv /tmp/TestHashStability_SameInputSameOutput3206661193/001/stability-test.md -tests Name,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle -json GO111MODULE 64/bin/go infocmp -1 xterm-color l /opt/hostedtoolcache/node/24.14.1/x64/bin/node 94bd537a09dfb501git GO111MODULE 64/bin/go node (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 /ref/tags/v9 SgUm/-evxfJf9jMJ1iP8YSgUm sv -n1 --format=format:remote --end-of-options-v ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -o 2643-35382/test-1695226274/.github/workflows -trimpath ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -p internal/testlogrev-parse -lang=go1.25 ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel 64/pkg/tool/linux_amd64/vet /usr/bin/git 605440/b200/_pkggit GO111MODULE cfg git rev-�� --show-toplevel ache/go/1.25.8/xremote.origin.url /usr/bin/git 818483/b070/_pkggit XvR1/5IzJsHuNVIjrev-parse x_amd64/link 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 /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linuremote2 /usr/bin/git tructions-test-7git -buildtags 818483/b431/vet.--show-toplevel git rev-�� --show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git -bool -buildtags /usr/lib/git-cor--show-toplevel git (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v8
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build380818483/b111/vet.cfg /usr/bin/git se 818483/b146/vet.rev-parse cfg git rev-�� --show-toplevel ache/go/1.25.8/xREDACTED /usr/bin/git Onlyrepos_only_wgit 818483/b253/vet.rev-parse ache/go/1.25.8/x--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 go e/git-remote-https -json GO111MODULE tnet/tools/sh e/git-remote-https api om/owner/repo.git repos/{owner}/{repo}/actions/runs/12345/artifacts /usr/bin/git .artifacts[].namgit GO111MODULE ache/node/24.14.--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 -json GO111MODULE x_amd64/asm GOINSECURE GOMOD GOMODCACHE x_amd64/asm env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (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 x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (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 x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile abi/�� -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv remove origin /usr/bin/git 01 GO111MODULE x_amd64/vet git conf�� user.name Test User /usr/bin/git lex-frontmatter-git cfg 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 --get remote.origin.url /usr/bin/git ub/workflows GO111MODULE 64/bin/go git conf�� user.email test@example.com /usr/bin/git -json GO111MODULE x_amd64/vet 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 --get remote.origin.url /usr/bin/git 76/001 tOLMlgimq 64/pkg/tool/linu--show-toplevel git init�� GOMODCACHE 64/pkg/tool/linu-trimpath /usr/bin/git le-frontmatter.mgit cfg x_amd64/link git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv GOMODCACHE go /usr/bin/git ty-test.md GO111MODULE x_amd64/asm git conf�� user.name Test User /usr/bin/git -json GO111MODULE 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 t0 -tests ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet m0s GO111MODULE (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv if [ -f .github/aw/actions-lock.json ]; then \ cp .github/aw/actions-lock.json remote.origin.urgit sh /usr/lib/git-core/git &#34;prettier&#34; --wrigit git 64/bin/go /usr/lib/git-core/git --gi�� for-each-ref --format=%(objectname) /usr/bin/git -json GO111MODULE 64/bin/go 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 add remote2 /usr/bin/git 751812/001 4GDF0MOYT x_amd64/vet git rev-�� --show-toplevel x_amd64/vet /usr/bin/infocmp _.a GO111MODULE 64/pkg/tool/linu--show-toplevel 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 .github/workflows/test.md go /usr/bin/git -json GO111MODULE 64/bin/go git rev-�� --show-toplevel go /usr/bin/git -json 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 sistency_GoAndJavaScript4292639366/001/test-inlined-imports-enabled-with-env-template-expressiongit remote /usr/bin/git -json GO111MODULE x_amd64/asm git -C r-test2200859507/existing.md rev-parse /usr/bin/git -json rk x_amd64/compile 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 k/_temp/uv-pytho-json node /bin/sh --write ../../../**/*.jsrev-parse 64/bin/go /bin/sh -c git-receive-pack &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitcustom_branch1440716651/001&#39;git git-receive-pack &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitcustom_branch1440716651/001&#39;rev-parse e/git -json GO111MODULE 64/bin/go e/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 /tmp/gh-aw-add-gitattributes-test3257735513/.github/workflows rev-parse /usr/bin/git -json GO111MODULE x_amd64/compile git -C /tmp/gh-aw-test-runs/20260417-052643-35382/test-3697443609/.github/workflows remote /usr/bin/git -json GO111MODULE x_amd64/compile git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows/agent-performance-analyzer.md blob /usr/lib/git-core/git --write ../../../**/*.jsrev-parse 64/bin/go /usr/lib/git-core/git main�� run l /usr/bin/git --detach GO111MODULE 64/bin/go git (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 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 963594776 GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE g/x/text/unicoderev-parse 605440/b092/syma--show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 om/modelcontextprotocol/go-sdk@v1.5.0/jsonrpc/js-ifaceassert 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 605440/b234/_pkg_.a oYmy/n_pwg_VDfKQLamLkoYmy 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile env 8873393/b417/_pkg_.a GO111MODULE e/git-upload-pack 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 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linutest@example.com env 1203931408 GO111MODULE x_amd64/link GOINSECURE fips140/ecdsa 605440/b078/syma--show-toplevel x_amd64/link (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 3003399762 QuTc/8J1aAAdvjhK6D-KwQuTc cfg GOINSECURE fips140/tls13 GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/link (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name GO111MODULE ache/node/24.14.1/x64/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node--show-toplevel GOINSECURE GOMOD GOMODCACHE go m/_n�� 64085709/.github/workflows GO111MODULE /opt/hostedtoolcache/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 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE 605440/b078/ GOMODCACHE 64/pkg/tool/linuTest User env 605440/b156/_pkg_.a GO111MODULE ache/go/1.25.8/x64/pkg/tool/linu-lang=go1.25 GOINSECURE contextprotocol/rev-parse 605440/b078/syma--show-toplevel ache/go/1.25.8/x64/pkg/tool/linu-dwarf=false (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 3003399762 eFae/0ahu769BnKYz-hV-eFae cfg GOINSECURE fips140/tls12 GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuremote.origin.url (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name GO111MODULE k/_temp/uv-python-dir/node GOINSECURE GOMOD GOMODCACHE go m/_n�� 64085709 GO111MODULE 1/x64/bin/node 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 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE fips140 GOMODCACHE 64/pkg/tool/linux_amd64/vet env 605440/b206/_pkg_.a i2Jk/kxQktkbJrdZm0O72i2Jk 64/pkg/tool/linux_amd64/compile GOINSECURE hpke GOMODCACHE 64/pkg/tool/linux_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 GO111MODULE 64/pkg/tool/linu-importcfg GOINSECURE GOMOD 605440/b013/symauser.name 64/pkg/tool/linuTest User env 399376872 7Ps3/Xuna8G_bMUX3GMM57Ps3 cfg GOINSECURE t/internal/strinrev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD ode-gyp-bin/node--show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile env 3734-55947/test-1912838295 GO111MODULE e/git-upload-pack 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/pkg/tool/linux_amd64/vet GOINSECURE fips140/sha256 GOMODCACHE 64/pkg/tool/linux_amd64/vet env 605440/b219/_pkg_.a t2Bi/LbyKJAzlPTfrrG8ct2Bi cfg GOINSECURE g/x/text/unicoderev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu-buildtags (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuTest User env 8873393/b419/_pkg_.a GO111MODULE 8873393/b419=&gt; 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/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 963594776 go cfg GOINSECURE g/x/crypto/chachrev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuremote.origin.url (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 om/modelcontextprotocol/go-sdk@v1.5.0/internal/x-ifaceassert 64/pkg/tool/linux_amd64/vet GOINSECURE l/buffer GOMODCACHE 64/pkg/tool/linux_amd64/vet env 605440/b233/_pkg_.a pRaw/gwkwek_UF5vdtNyzpRaw cfg GOINSECURE a95/uritemplate/rev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linu-test.short=true GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile env 3734-55947/test-1912838295 GO111MODULE 8873393/b408=&gt; 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/pkg/tool/linux_amd64/vet GOINSECURE 605440/b092/ GOMODCACHE 64/pkg/tool/linux_amd64/vet env 963594776 GO111MODULE 64/pkg/tool/linux_amd64/compile GOINSECURE nal/fips140tls 605440/b092/syma-bool 64/pkg/tool/linu-buildtags (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 605440/b242/_pkg_.a V7o_/18xeupG6XnJInX8DV7o_ ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE t/internal/tag GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile env 3734-55947/test-1912838295 GO111MODULE 8873393/b413=&gt; 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 -c=4 -nolocalimports -importcfg /tmp/go-build380818483/b414/importcfg -pack /home/REDACTED/work/gh-aw/gh-aw/pkg/fileutil/fileutil.go /home/REDACTED/work/gh-aw/gh-aw/pkg/fileutil/tar.go env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (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 x_amd64/cgo env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 6 605440/b011/ GOMODCACHE 64/pkg/tool/linuremote2 env 605440/b175/_pkg_.a cfg 64/pkg/tool/linux_amd64/vet GOINSECURE fips140/nistec ache/go/1.25.8/xuser.email 64/pkg/tool/linutest@example.com (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github%2Fworkflows%2Faudit-workflows.md
    • Triggering command: /opt/hostedtoolcache/node/24.14.1/x64/bin/node /opt/hostedtoolcache/node/24.14.1/x64/bin/node --experimental-import-meta-resolve --require /home/REDACTED/work/gh-aw/gh-aw/actions/setup/js/node_modules/vitest/suppress-warnings.cjs --conditions node --conditions development /home/REDACTED/work/gh-aw/gh-aw/actions/setup/js/node_modules/vitest/dist/workers/forks.js -- git git show�� --verify --quiet de_modules/.bin/git --local --get ode-gyp-bin/git 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 64/pkg/tool/linux_amd64/compile /usr/bin/git 66/001/test-compgit 818483/b018/vet.rev-parse 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 sRemoteWithRealGls sRemoteWithRealG-lh ache/go/1.25.8/x/tmp/gh-aw/aw-feature-branch.patch 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 64/pkg/tool/linux_amd64/cgo /usr/bin/git -json GO111MODULE ache/go/1.25.8/x--show-toplevel git rev-�� --show-toplevel go /usr/bin/git -json GO111MODULE k/gh-aw/node_mod/tmp/gh-aw/aw-feature-branch.patch 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 plorer.md ne_constants.go 64/pkg/tool/linux_amd64/vet GOINSECURE ntio/asm/keyset GOMODCACHE 64/pkg/tool/linutest@example.com (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 repo2174671395/001 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/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 x_amd64/link GOINSECURE jsonrpc2 GOMODCACHE x_amd64/link env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (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 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 --show-toplevel .go /usr/bin/git --show-toplevel go /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --get remote.origin.ur-C ed } } 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 -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json poll/fd.go x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (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 x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env Gitmain_branch39remote.origin.url Gitmain_branch3944637673/001&#39; x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (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 x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (http block)
  • https://api.github.com/repos/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 x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env _.a GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (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 s/data/action_pins.json...&#34; 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/v3.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel go /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git add remote1 /usr/bin/git git (http block)
  • https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv 605440/b157/_pkg_.a bft1/1yO0RzBmJIVi0dFibft1 64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv d GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env echo &#34;Running wasm-opt -Oz (size optimization)...&#34;; \ BEFORE=$(wc -c &lt; gh-aw.wasm); \ wasm-optgit GO111MODULE 64/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 eb/eNLpKCNOPvJX5m-Eh2k5/v2XBdbyCCiLOt5gSqmaM env 605440/b194/_pkg_.a 4ACQ/f02Eva1ttQPQuPWq4ACQ ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuremote (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE /home/REDACTED/.dotnet/tools/sh GOINSECURE GOMOD GOMODCACHE sh (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion --show-toplevel go /usr/bin/git git rev-�� y_with_repos_array_c1469502877/001 git /usr/bin/git --show-toplevel go e/git git (http block)
  • https://api.github.com/repos/owner/repo/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json age/common.go x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo -nolocalimports -importcfg /tmp/go-build380818483/b418/importcfg -pack /tmp/go-build380818483/b418/_testmain.go env -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo modules/@npmcli/run-script/lib/node-gyp-bin/sh GOINSECURE GOMOD GOMODCACHE go env 6d45fa2961359906-d GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/owner/repo/contents/file.md
    • Triggering command: /tmp/go-build380818483/b400/cli.test /tmp/go-build380818483/b400/cli.test -test.testlogfile=/tmp/go-build380818483/b400/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 x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (http block)
    • Triggering command: /tmp/go-build1952464040/b400/cli.test /tmp/go-build1952464040/b400/cli.test -test.testlogfile=/tmp/go-build1952464040/b400/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 modules/@npmcli/run-script/lib/node-gyp-bin/sh GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /tmp/go-build2661548898/b400/cli.test /tmp/go-build2661548898/b400/cli.test -test.testlogfile=/tmp/go-build2661548898/b400/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true /tmp/gh-aw-test-git (http block)
  • https://api.github.com/repos/test-owner/test-repo/actions/secrets
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name -json GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json 1.5.0/internal/m-ifaceassert x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile (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 ../../../.prettierignore 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 --show-toplevel nly /usr/bin/git /tmp/gh-aw-test-bash show /usr/bin/git git rev-�� --show-toplevel git e/git --show-toplevel go /usr/bin/git e/git (http block)
  • invalid.example.invalid
    • Triggering command: /usr/lib/git-core/git-remote-https /usr/lib/git-core/git-remote-https origin https://invalid.example.invalid/nonexistent-repo.git git conf�� --local --get ode_modules/.bin/git cal/bin/git git /git git add . git tions/setup/node_modules/.bin/git -M main bin/git git (dns 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 April 17, 2026 05:56
@pelikhan pelikhan merged commit 3abbb32 into main Apr 17, 2026
53 of 55 checks passed
@pelikhan pelikhan deleted the jsweep/clean-resolve-mentions-from-payload-f36980010f05d1b7 branch April 17, 2026 13:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants