Skip to content

[jsweep] Clean action_setup_otlp.cjs — add comprehensive test coverage#26986

Merged
pelikhan merged 4 commits intomainfrom
jsweep/action-setup-otlp-tests-5e65e62083bcd634
Apr 18, 2026
Merged

[jsweep] Clean action_setup_otlp.cjs — add comprehensive test coverage#26986
pelikhan merged 4 commits intomainfrom
jsweep/action-setup-otlp-tests-5e65e62083bcd634

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Summary

Added a comprehensive test file for action_setup_otlp.cjs, which had no test coverage despite being a critical Node.js utility used in both action mode and script mode.

File: action_setup_otlp.cjs

Context: Pure Node.js (not github-script). Sends a gh-aw.<jobName>.setup OTLP span and propagates trace/span IDs via GITHUB_OUTPUT and GITHUB_ENV.

Code quality: Already clean with @ts-check, modern JavaScript, and clear comments. No code changes needed — only test coverage was missing.

Test file: action_setup_otlp.test.cjs

35 tests added across 8 describe blocks:

Group Tests
OTEL endpoint not set 3 (logging behavior, JSONL mirror still called)
OTEL endpoint set 4 (logging, span call, result logging)
SETUP_START_MS propagation 3 (valid, missing, non-numeric)
INPUT_TRACE_ID handling 7 (lowercase normalization, hyphen form, precedence)
INPUT_JOB_NAME normalization 2 (underscore/hyphen forms)
GITHUB_OUTPUT writing 4 (valid/invalid trace IDs, missing env)
GITHUB_ENV writing 9 (trace/span IDs, job start ms, invalid IDs)
Error handling 1 (error propagation)

Testing approach: Uses the same CJS module-patching pattern as action_conclusion_otlp.test.cjs — loads send_otlp_span.cjs first, patches its exports, then loads the module under test. Uses real temp files for GITHUB_OUTPUT / GITHUB_ENV writes (no filesystem mocking needed).

✅ Validation Checks

  • Formatting (npm run format:cjs): ✓ Passed
  • Linting (npm run lint:cjs): ✓ All files use Prettier code style
  • Type checking (npm run typecheck): ✓ No new errors (4 pre-existing errors in unrelated files)
  • Tests (npm run test:js -- --no-file-parallelism): ✓ 35/35 passed (4 pre-existing failures in unrelated files unaffected)

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.4M ·

  • expires on Apr 20, 2026, 4:48 AM UTC

35 test cases covering:
- OTEL endpoint set/unset logging behavior
- sendJobSetupSpan call and propagation
- SETUP_START_MS parsing (valid, missing, non-numeric)
- INPUT_TRACE_ID handling (lowercase normalization, hyphen form, precedence)
- INPUT_JOB_NAME normalization to underscore form
- GITHUB_OUTPUT file writing (valid/invalid trace IDs)
- GITHUB_ENV file writing (trace ID, span ID, job start ms)
- Error propagation from sendJobSetupSpan

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@pelikhan pelikhan marked this pull request as ready for review April 18, 2026 05:03
Copilot AI review requested due to automatic review settings April 18, 2026 05:03
@github-actions github-actions bot mentioned this pull request Apr 18, 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 comprehensive Vitest coverage for action_setup_otlp.cjs, ensuring the setup OTLP span workflow and trace/span propagation behaviors are exercised across key environment-variable and output-writing scenarios.

Changes:

  • Introduces action_setup_otlp.test.cjs with broad coverage of logging, input normalization, and file propagation (GITHUB_OUTPUT / GITHUB_ENV).
  • Uses a shared CJS-module export patching pattern to mock sendJobSetupSpan while validating the wrapper’s behavior.
  • Verifies behavior across endpoint configured/unconfigured paths and error propagation.
Show a summary per file
File Description
actions/setup/js/action_setup_otlp.test.cjs Adds a dedicated test suite covering env/input normalization, logging, and output/env file writes for action_setup_otlp.cjs.

Copilot's findings

Tip

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

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

Comment on lines +159 to +165
it("should pass NaN when SETUP_START_MS is not a number", async () => {
process.env.SETUP_START_MS = "not-a-number";

await run();

const [options] = /** @type {[{startMs: number}]} */ mockSendJobSetupSpan.mock.calls[0];
expect(isNaN(options.startMs)).toBe(true);
Comment on lines +44 to +49
// Provide fresh temp files so GITHUB_OUTPUT and GITHUB_ENV writes are isolated
const ts = Date.now();
outputFile = join(tmpdir(), `test_github_output_${ts}`);
envFile = join(tmpdir(), `test_github_env_${ts}`);
writeFileSync(outputFile, "");
writeFileSync(envFile, "");
@github-actions
Copy link
Copy Markdown
Contributor Author

🧪 Test Quality Sentinel Report

Test Quality Score: 69/100

⚠️ Acceptable — some low-signal tests detected

Metric Value
New/modified tests analyzed 35
✅ Design tests (behavioral contracts) 32 (91%)
⚠️ Implementation tests (low value) 3 (9%)
Tests with error/edge cases 20 (57%)
Duplicate test clusters 1
Test inflation detected Yes (359 test lines added, 0 production lines changed — test-addition PR)
🚨 Coding-guideline violations None

Test Classification Details

View all 35 test classifications
Test Classification Issues Detected
should export run as a function ⚠️ Implementation Structural export check — not a behavioral contract
should log that OTLP export is being skipped ✅ Design Verifies observable log when endpoint absent
should still call sendJobSetupSpan for JSONL mirror ⚠️ Implementation Call-count assertion only — no argument/output verification
should not log 'sending setup span to' when endpoint is absent ✅ Design Negative behavioral assertion
should log sending the setup span to the configured endpoint ✅ Design Observable log output
should call sendJobSetupSpan exactly once ⚠️ Implementation Call-count only — no argument/output verification
should log setup span sent with traceId and spanId ✅ Design Verifies traceId/spanId in log output
should log the resolved trace ID ✅ Design Observable log contract
should pass startMs=0 when SETUP_START_MS is not set ✅ Design Default-value contract
should pass the parsed integer startMs when SETUP_START_MS is a valid number ✅ Design Data transformation contract
should pass NaN when SETUP_START_MS is not a number ✅ Design Edge case: invalid input handling
should pass traceId=undefined when INPUT_TRACE_ID is not set ✅ Design Default-value contract
should pass the trace ID as-is (already lowercase) ✅ Design No-op normalization contract
should normalize INPUT_TRACE_ID to lowercase ✅ Design Normalization contract
should log the INPUT_TRACE_ID value when set ✅ Design Observable log output
should log that INPUT_TRACE_ID is not set when absent ✅ Design Observable log when absent
should accept the hyphen form INPUT_TRACE-ID as a fallback ✅ Design Edge case: alternate env var form
should prefer INPUT_TRACE_ID over the hyphen form when both are set ✅ Design Priority/conflict resolution contract
should set INPUT_JOB_NAME env var from the hyphen form ✅ Design Side-effect contract
should set INPUT_JOB_NAME env var when already in underscore form ✅ Design Pass-through contract
should write trace-id to GITHUB_OUTPUT when trace ID is valid ✅ Design Observable file-write side effect
should log that trace-id was written to GITHUB_OUTPUT ✅ Design Observable log output
should not write to GITHUB_OUTPUT when GITHUB_OUTPUT is not set ✅ Design Edge case: graceful no-op
should not write trace-id to GITHUB_OUTPUT when returned trace ID is invalid ✅ Design Edge case: validation guard
should write GITHUB_AW_OTEL_TRACE_ID to GITHUB_ENV when trace ID is valid ✅ Design Observable file-write side effect
should write GITHUB_AW_OTEL_PARENT_SPAN_ID to GITHUB_ENV when span ID is valid ✅ Design Observable file-write side effect
should write GITHUB_AW_OTEL_JOB_START_MS with a positive integer timestamp ✅ Design Value format contract
should always write GITHUB_AW_OTEL_JOB_START_MS even when trace ID is invalid ✅ Design Edge case: unconditional write
should not write to GITHUB_ENV when GITHUB_ENV is not set ✅ Design Edge case: graceful no-op
should not write GITHUB_AW_OTEL_TRACE_ID when returned trace ID is invalid ✅ Design Edge case: validation guard
should not write GITHUB_AW_OTEL_PARENT_SPAN_ID when returned span ID is invalid ✅ Design Edge case: validation guard
should log the GITHUB_AW_OTEL_TRACE_ID write ✅ Design Observable log output
should log the GITHUB_AW_OTEL_PARENT_SPAN_ID write ✅ Design Observable log output
should log the GITHUB_AW_OTEL_JOB_START_MS write ✅ Design Observable log output
should propagate errors from sendJobSetupSpan to the caller ✅ Design Error-propagation contract

Flagged Tests — Requires Review

⚠️ should export run as a function (action_setup_otlp.test.cjs)

Classification: Implementation test
Issue: Asserts typeof run === "function" — this checks the module's internal export shape, not its observable behavior.
What design invariant does this test enforce? None beyond module structure. A behavioral regression in run() would not be caught.
What would break if deleted? Nothing observable — the other 34 tests all call run() successfully, so they'd fail first if the export were broken.
Suggested improvement: Remove this test. The behavioral tests below it already serve as a better guard — if run isn't a function, every await run() call fails with a clearer error.


⚠️ should still call sendJobSetupSpan for JSONL mirror (action_setup_otlp.test.cjs)

Classification: Implementation test
Issue: Only asserts mockSendJobSetupSpan.toHaveBeenCalledOnce() with no argument verification. The test name promises behavioral coverage ("for JSONL mirror") but delivers only a call-count check.
What design invariant does this test enforce? Partial — it confirms sendJobSetupSpan is invoked even without an OTLP endpoint, but doesn't verify what is sent.
Suggested improvement: Add expect(mockSendJobSetupSpan).toHaveBeenCalledWith(expect.objectContaining({ ... })) to verify that the span arguments are still correct even when the OTLP endpoint is absent.


⚠️ should call sendJobSetupSpan exactly once (action_setup_otlp.test.cjs)

Classification: Implementation test
Issue: Duplicate call-count assertion inside the "endpoint is set" block. The other tests in that describe already imply the function was called by asserting on its logged outputs and return values.
What design invariant does this test enforce? Deduplication guard — ensures run() doesn't call sendJobSetupSpan more than once. This is modestly useful, but the test name and single assertion make it implementation-flavored.
Suggested improvement: Either remove it (already implicit from the argument-checking tests), or rename it to "should not call sendJobSetupSpan more than once" and pair it with a check on the returned traceId to make the behavioral expectation explicit.


Duplicate Cluster Detected

Three tests in the GITHUB_ENV file writing section follow an identical pattern — asserting a single specific console.log string:

  • should log the GITHUB_AW_OTEL_TRACE_ID write
  • should log the GITHUB_AW_OTEL_PARENT_SPAN_ID write
  • should log the GITHUB_AW_OTEL_JOB_START_MS write

These could be collapsed into a single test that asserts all three write-confirmation messages, or the log assertions could be co-located with the corresponding file-write tests above them. Low priority, but reduces signal-to-noise.


Test Inflation Note

The production file action_setup_otlp.cjs (113 lines) was not modified in this PR — only the new test file was added (+359 lines). The inflation metric is technically triggered because no production lines changed. However, this is a test-addition PR (adding coverage to a previously untested file), which is precisely the intended use case. The inflation penalty (−10 pts) is applied per rubric but should not be treated as a quality concern here.


Language Support

Tests analyzed:

  • 🟨 JavaScript (*.test.cjs): 35 tests (vitest)
  • 🐹 Go (*_test.go): 0 tests (none changed in this PR)

Verdict

Check passed. 9% of new tests are implementation tests (threshold: 30%). No coding-guideline violations detected. The test suite is well-structured with strong behavioral coverage — file writes, env-var propagation, log output, normalization, edge-case no-ops, and error propagation are all exercised.


📖 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:

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

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: 69/100. Test quality is acceptable — 9% of new tests are implementation tests (threshold: 30%). Strong behavioral coverage with real file-write, env-var, and error-propagation assertions. Three minor low-value tests flagged (see comment); no coding-guideline violations.

@pelikhan
Copy link
Copy Markdown
Collaborator

Copilot AI and others added 3 commits April 18, 2026 09:39
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/f020d8a6-e359-445a-986e-1fd168d560ee

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

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

Copilot AI commented Apr 18, 2026

@copilot review all comments

https://github.com/github/gh-aw/actions/runs/24597469960/job/71930196552

Reviewed all comments and applied both actionable fixes in 6a49a3a: invalid SETUP_START_MS now coerces to 0 (instead of passing NaN), and test temp files now use mkdtempSync with recursive cleanup to avoid filename collisions. I also checked the referenced CI job logs; the failure there is in unrelated Go workflow tests (pkg/workflow), while the updated JS test file passes locally.

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 2241778/b253/vetrev-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 4150-43134/test-git -trimpath /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 cfg git rev-�� --show-toplevel go /usr/bin/git -json GO111MODULE ache/go/1.25.8/x--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 /usr/bin/git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git 190050035/.githugit git 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 GOINSECURE GOMOD GOMODCACHE sgM1d_TR1DWb env -json 2/compile.go 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 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 /orgs/test-owner/actions/secrets --jq .secrets[].name --show-toplevel git /usr/bin/git runs/20260418-09npm go ache/node/24.14.format:pkg-json git rev-�� h ../../../.prettierignore ache/node/24.14.1/x64/bin/node /usr/bin/git b.actor }}, Repo/opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet 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 --git-dir x_amd64/compile /usr/bin/git yG-aYRRV4 .cfg 64/pkg/tool/linu--show-toplevel /usr/bin/git remo�� -v 64/pkg/tool/linux_amd64/vet /usr/bin/git 1759661639/.githgit om/modelcontextprev-parse 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 x_amd64/link /usr/bin/git -json GO111MODULE 64/bin/go git remo�� add s/12345/artifacts /usr/bin/git -json GO111MODULE n-dir/node 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 git /usr/bin/git --show-toplevel git /usr/bin/git git init�� /usr/bin/git git /usr/bin/git &#39;**/*.ts&#39; &#39;**/*.git git bin/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 k/gh-aw/gh-aw/.github/workflows/api-consumption--errorsas rev-parse clusion,workflowName,createdAt,startedAt,updated-nilfunc -json GO111MODULE x_amd64/compile git -C /home/REDACTED/work/gh-aw/gh-aw/.github/workflows rev-parse ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -json GO111MODULE x_amd64/vet 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/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel go /usr/bin/git -json GO111MODULE 64/bin/go git -C /tmp/compile-all-instructions-test-2486751928 show /usr/bin/git ed-with-env-tempgit 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/TestHashConsistency_GoAndJavaScript1594954372/001/test-inlined-imports-enabled-with-env-temgit git /usr/bin/git --show-toplevel git /usr/bin/git git conf�� 0125-64544/test-1309661324 Test User ache/node/24.14.1/x64/bin/node --show-toplevel git /usr/bin/bash ache/node/24.14.1/x64/bin/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 2640/001/stability-test.md 2241778/b231/vet.cfg sv GOSUMDB GOWORK 64/bin/go ache/go/1.25.8/x^remote\..*\.gh-resolved$ (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 2916581598 O_e3/jNiaaPEe3F5rev-parse 64/pkg/tool/linu--show-toplevel git rev-�� --show-toplevel 64/pkg/tool/linux_amd64/compile /usr/bin/git g_.a oXnN/-5aZqfwMX4Hrev-parse .cfg 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 -bool -buildtags ache/node/24.14.--show-toplevel git rev-�� --show-toplevel /tmp/go-build3342241778/b406/console.test /usr/bin/git bility_SameInputgit -test.v=true /usr/bin/infocmp--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/linux_amd64/vet /usr/bin/git efaultBranchFromgit efaultBranchFromrev-parse .cfg git rev-�� --show-toplevel ache/go/1.25.8/x-buildtags /usr/bin/git se 2241778/b258/vetrev-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 GOMODCACHE go /usr/bin/git -json GO111MODULE k/gh-aw/gh-aw/acHEAD git rev-�� --show-toplevel epo}/actions/runs/3/artifacts /usr/bin/git e 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 64/pkg/tool/linux_amd64/vet /usr/bin/git --show-toplevel git 1/x64/bin/node git rev-�� --show-toplevel resolved$ /usr/bin/git vaScript15949543git /usr/bin/git 1/x64/bin/node 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/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 env go 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 age/common.go x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv nt/action/git/ref/tags/v999.999.999 upstream bject.type] | @tsv g_.a GO111MODULE x_amd64/vet git rev-�� --show-toplevel x_amd64/vet /usr/bin/git 64/src/runtime/igit .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 --show-toplevel go om/org2/repo2.git 77182dc1f41d2a5bgit GO111MODULE x_amd64/compile git rev-�� --show-toplevel x_amd64/compile /usr/bin/git -json GO111MODULE 64/bin/go 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 infocmp /opt/hostedtoolcache/node/24.14.1/x64/bin/node xterm-color git /usr/bin/git /opt/hostedtoolcache/node/24.14.1/x64/bin/node /tmp�� github.token git /usr/bin/git ../pkg/workflow/git git /usr/bin/git 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 -aw/git/ref/tags/v1.0.0 upstream bject.type] | @tsv g_.a lNGu_38wk x_amd64/vet git rev-�� --show-toplevel x_amd64/vet /usr/bin/git matter-with-arragit .cfg 64/pkg/tool/linu--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel go om/org1/repo1.git ub/workflows GO111MODULE x_amd64/compile /opt/hostedtoolcache/node/24.14.1/x64/bin/node /tmp�� github.repository x_amd64/compile /usr/bin/git -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 xterm-color git /usr/bin/git ub/workflows git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git ../pkg/workflow/git git /usr/bin/git 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 bility_SameInputSameOutput4092542640/001/stability-test.md Test User /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/compile -json GO111MODULE x_amd64/compile /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/compile -o /tmp/go-build3342241778/b426/_pkg_.a -trimpath /usr/bin/git -p main -lang=go1.25 git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv sistency_KeyOrdering436119333/001/test2.md sh /usr/lib/git-core/git &#34;prettier&#34; --wrigit git 64/bin/go /usr/lib/git-core/git pack�� g/cli --revs 1/x64/bin/node --thin --delta-base-offrev-parse -q 1/x64/bin/node (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv runs/20260418-100125-64544/test-4003951661 git /usr/bin/git l nly /usr/bin/git git init�� --bare --initial-branch=master /usr/bin/git --show-toplevel git /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 /home/REDACTED/work/gh-aw/gh-aw/scripts/lint_error_messages.go /home/REDACTED/work/gh-aw/gh-aw/scripts/lint_error_messages_test.go /usr/bin/git g_.a tOLMlgimq x_amd64/vet git conf�� user.email test@example.com /usr/bin/git Elygkb-do .cfg 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 /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/approach-validator.md l ache/node/24.14.1/x64/bin/node ub/workflows GO111MODULE 64/bin/go ache/node/24.14.1/x64/bin/node s-26�� .actor }}, Unsafe: ${{ secrets.TOKEN }} go /usr/bin/git -json GO111MODULE 64/bin/go 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 git /usr/bin/git on&#39; --ignore-patgit Initial /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv bility_SameInputSameOutput4092542640/001/stability-test.md --jq /usr/bin/git -json GO111MODULE x_amd64/compile git -C r-test2084711282/test1.md r-test2084711282/test2.lock.yml /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.0.0 --jq [.object.sha, .object.type] | @tsv /usr/bin/git node 1/x64/bin/node --write ../../../**/*.jsrev-parse 64/bin/go 1/x64/bin/node rev-�� --objects --stdin ache/node/24.14.1/x64/bin/node --exclude-hidden/usr/bin/git --all --quiet 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 runs/20260418-100125-64544/test-408159380 git kflows/test-no-expires.lock.yml --show-toplevel git /usr/bin/git git comm�� -m initial commit /usr/bin/git --show-toplevel git modules/@npmcli/--show-toplevel git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv bility_SameInputSameOutput4092542640/001/stability-test.md remote /usr/bin/git -json GO111MODULE x_amd64/asm git -C /tmp/gh-aw-test-runs/20260418-094150-43134/test-1328009602/.github/workflows rev-parse /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 7 --merged=8ca6dae50453e59e0907353a4ae1156f824a2a19 /usr/bin/git --write ../../../**/*.jsrev-parse 64/bin/go git push�� origin develop /usr/bin/git -json GO111MODULE 64/bin/go 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 runs/20260418-100125-64544/test-408159380/.github/workflows git /bin/sh --show-toplevel git /usr/bin/git /bin/sh -c git-upload-pack &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitcustom_branchremote.origin.ur/usr/bin/git git-upload-pack &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitcustom_branch375502983/001&#39; /usr/bin/git --show-toplevel e/git e 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 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE fips140/sha256 GOMODCACHE 64/pkg/tool/linuTest User env 2457004414 t2Bi/LbyKJAzlPTfrrG8ct2Bi eutil.test GOINSECURE g/x/text/unicodeconfig GOMODCACHE eutil.test (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b251/_pkg_.a fWCy/na03iXLzDBM34i--fWCy ache/go/1.25.8/x64/pkg/tool/linu-nilfunc GOINSECURE b/gh-aw/pkg/semvrev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu-tests (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name --check /opt/hostedtoolcache/node/24.14.1/x64/bin/node (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/linux_amd64/vet env 2919702518 O8a-/w8uJjXynBhCHi02xO8a- ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/xtest@example.com (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE fips140deps/goderev-parse GOMODCACHE 64/pkg/tool/linux_amd64/vet env 2916581598 V4ci/NWzImF-917Hk3aRqV4ci .cfg GOINSECURE g/x/crypto/chachremote 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 /home/REDACTED/work/_temp/uv-python-dir/node =receive GOMOD GOMODCACHE (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/pkg/tool/linux_amd64/vet GOINSECURE l/buffer GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b203/_pkg_.a pRaw/gwkwek_UF5vdtNyzpRaw .cfg GOINSECURE fips140/mlkem GOMODCACHE ache/go/1.25.8/xTest User (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name GO111MODULE /opt/hostedtoolcache/node/24.14.1/x64/bin/npx GOINSECURE GOMOD GOMODCACHE npx pret�� licyBlockedUsersApprovalLabelsCompiledOutput3124140494/001 scripts/**/*.js /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/link .prettierignore GOWORK 64/bin/go /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/link (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 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE fips140/sha3 GOMODCACHE 64/pkg/tool/linutest@example.com env 2457004414 Ldjv/q8rDzC5dO2KyVIFwLdjv util.test GOINSECURE hpke GOMODCACHE util.test (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b245/_pkg_.a 7Ps3/Xuna8G_bMUX3GMM57Ps3 x_amd64/link GOINSECURE t/internal/strinrev-parse GOMODCACHE x_amd64/link (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name GOPROXY 630749/b429/vet.cfg GOSUMDB GOWORK 64/bin/go node /hom�� --check scripts/**/*.js /usr/bin/git -d --write 64/bin/go git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE fips140/sha512 GOMODCACHE 64/pkg/tool/linux_amd64/vet env 2457004414 ZDcH/WlCyhVRj9mWQyquJZDcH .cfg GOINSECURE g/x/text/unicoderev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linuTest User (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linuTest User env 3/001/test-empty-frontmatter.md GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name --check /bin/sh **/*.ts **/*.json --ignore-path /bin/sh -c -instructions-test-2486751928/.github/workflows node 1/x64/bin/node -d --write 64/bin/go 1/x64/bin/node (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 randutil GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b220/_pkg_.a SZyr/UNQkpBpW_IvLZuHOSZyr .cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linutest@example.com (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD 8643200/b013/symgithub.event.inputs.branch 64/pkg/tool/linux_amd64/vet env 3/001/test-empty-frontmatter.md r73k/ZR15bOYtzO_sNGC5r73k ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE t/internal/langurev-parse 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/4/artifacts --jq .artifacts[].name GOPROXY /home/REDACTED/go/bin/node GOSUMDB GOWORK 64/bin/go wasm -o gh-aw.opt.wasm &amp;&amp; \ mv gh-aw.opt.wasm gh-aw.wasm; \ AFTER=$(wc -c &lt; g /hom�� --check scripts/**/*.js (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 8643200/b092/ GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b216/_pkg_.a GO111MODULE .cfg GOINSECURE g/x/text/secure/rev-parse 8643200/b092/sym--show-toplevel ache/go/1.25.8/x64/pkg/tool/linuremote.origin.url (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 .cfg x_amd64/compile GOINSECURE GOMOD 8643200/b007/syminputs.version x_amd64/compile ache�� 8643200/b221/_pkg_.a GO111MODULE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE g/x/net/http/httrev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linu/tmp/go-build3342241778/b113/vet.cfg (http block)
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name **/*.cjs /opt/hostedtoolcache/go/1.25.8/x64/bin/node **/*.json --ignore-path ../../../.pretti--show-toplevel node /hom�� -instructions-test-2486751928/.github/workflows scripts/**/*.js /usr/bin/git -d --write 64/bin/go git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path -c=4 -nolocalimports -importcfg /tmp/go-build3342241778/b415/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 1.5.0/jsonrpc/jsonrpc.go 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/vet 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 8643200/b011/ GOMODCACHE 64/pkg/tool/linuremote1 env rdian.md .cfg 64/pkg/tool/linux_amd64/compile GOINSECURE fips140cache ache/go/1.25.8/x--show-toplevel 64/pkg/tool/linux_amd64/compile (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/link /usr/bin/git stants.test 2241778/b022/vetrev-parse ortcfg.link git rev-�� --show-toplevel iUvfKiNE5rqr-fVJvK/5aqBMd_mtKdi1oXVrKBb/QPk7uVMnlR-ERXqyKoBh /usr/bin/git 8643200/b166/impls -trimpath g_.a 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 user.email test@example.com /usr/bin/git 1/main.md GO111MODULE ache/go/1.25.8/x--show-toplevel git rev-�� --git-dir go /usr/bin/git uaxFzKpZl GO111MODULE k/gh-aw/gh-aw/ac/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 git /usr/bin/git *.json&#39; &#39;!../../git git /usr/bin/git git rev-�� --show-toplevel /systemd-executor /usr/bin/git --show-toplevel git in/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 8643200/b164/_pkg_.a .cfg 64/pkg/tool/linux_amd64/vet GOINSECURE boring/bbig GOMODCACHE 64/pkg/tool/linux_amd64/vet (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 ./cmd/gh-aw GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env 209842777/001 209842777/002/work ode_modules/.bin/prettier 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 js/**/*.json&#39; --ignore-path ../../../.prettierignore git /usr/bin/git --show-toplevel go /usr/bin/git git 2828�� --show-toplevel git /usr/bin/git /tmp/gh-aw-test-gh rev-parse /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env g_.a tants.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/v1.2.3 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go 3692�� -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 git odules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/sh GOMODCACHE ,short /usr/bin/git mkdir -p tmatter-with-envremote.origin.url git /usr/bin/git --show-toplevel go /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet 7963�� g_.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/v2.0.0 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env g_.a GO111MODULE x_amd64/vet json; \ echo &#34;�node 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 g_.a rt.go 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 /lib/wasm/wasm_e-p GO111MODULE x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet env -json @v1.19.2/printer-c=4 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 -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE node 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/mkdir --show-toplevel go /usr/bin/git mkdir ode_�� ub/workflows git sh --show-toplevel go /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 8643200/b167/_pkg_.a GO111MODULE x_amd64/compile GOINSECURE fips140hash 8643200/b011/sym--show-toplevel x_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 -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE es/.bin/node 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 js/**/*.json&#39; --ignore-path ../../../.prettierignore git /usr/bin/git --show-toplevel go /usr/bin/git git rev-�� lGitmaster_branch2282847484/001&#39; lGitmaster_branch2282847484/001&#39; /usr/bin/git .github/workflowgit go /usr/bin/git git (http block)
  • https://api.github.com/repos/nonexistent/repo/actions/runs/12345
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion GOINSECURE /cpu GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8643200/b141/_pkg_.a .cfg ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet GOINSECURE contextprotocol/rev-parse GOMODCACHE ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion l sed 64/bin/go /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -ato�� -bool -buildtags /usr/bin/gh -errorsas -ifaceassert -nilfunc gh (http block)
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion --ignore-path ../../../.prettirev-parse /usr/bin/git git-receive-pack /tmp�� /usr/bin/git git /usr/bin/git --show-toplevel git 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 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 -nolocalimports -importcfg /tmp/go-build3342241778/b419/importcfg -pack /tmp/go-build3342241778/b419/_testmain.go env -json gset/set.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 (http block)
  • https://api.github.com/repos/owner/repo/contents/file.md
    • Triggering command: /tmp/go-build3342241778/b400/cli.test /tmp/go-build3342241778/b400/cli.test -test.testlogfile=/tmp/go-build3342241778/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-build763630749/b400/cli.test /tmp/go-build763630749/b400/cli.test -test.testlogfile=/tmp/go-build763630749/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 /sh GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /tmp/go-build1823875475/b400/cli.test /tmp/go-build1823875475/b400/cli.test -test.testlogfile=/tmp/go-build1823875475/b400/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true --show-toplevel go /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel go /usr/bin/git 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/j-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 ly&#34;; \ else \ echo &#34;��� Warning: .github/aw/actions-lock.json does not exist yet&#34;; \ fi GOMOD GOMODCACHE 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 --show-toplevel git /usr/bin/infocmp --show-toplevel go Name,createdAt,s--write infocmp -1 h ../../../.pret.prettierignore git /node --show-toplevel go /usr/bin/git grep (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 April 18, 2026 10:14
@pelikhan pelikhan merged commit 610f181 into main Apr 18, 2026
51 of 55 checks passed
@pelikhan pelikhan deleted the jsweep/action-setup-otlp-tests-5e65e62083bcd634 branch April 18, 2026 10:25
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.

3 participants