fix: graceful degradation in handle_create_pr_error when API calls fail#19683
fix: graceful degradation in handle_create_pr_error when API calls fail#19683
handle_create_pr_error when API calls fail#19683Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
… handling Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
handle_create_pr_error when API calls fail
There was a problem hiding this comment.
Pull request overview
Improves resiliency of the conclusion-job fallback script by preventing GitHub API failures from crashing handle_create_pr_error, and adds tests for the failure paths.
Changes:
- Wraps the GitHub search → comment/create sequence in
actions/setup/js/handle_create_pr_error.cjswithtry/catchand logs viacore.warning()on failure. - Adds
actions/setup/js/handle_create_pr_error.test.cjsto cover success paths and API-failure paths. - Also updates
actions/setup-cli/install.shinstall flow and bumps/adjusts a locked workflow YAML (not described in the PR summary).
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| actions/setup/js/handle_create_pr_error.cjs | Adds graceful error handling around GitHub API calls using getErrorMessage(). |
| actions/setup/js/handle_create_pr_error.test.cjs | Adds Vitest coverage for create/comment and API-failure scenarios. |
| actions/setup-cli/install.sh | Refactors gh extension install logic and output reporting. |
| .github/workflows/constraint-solving-potd.lock.yml | Bumps locked versions and adds job concurrency / container tag updates. |
Comments suppressed due to low confidence (2)
.github/workflows/constraint-solving-potd.lock.yml:607
- This PR also updates the locked workflow (agent version / container tags / adds job-level concurrency), which isn’t mentioned in the PR description. If these lockfile updates are unrelated to the
handle_create_pr_errorfix, consider reverting them or moving them to a dedicated lockfile-bump PR to keep review scope tight.
export DEBUG="*"
export GH_AW_ENGINE="copilot"
export MCP_GATEWAY_DOCKER_COMMAND='docker run -i --rm --network host -v /var/run/docker.sock:/var/run/docker.sock -e MCP_GATEWAY_PORT -e MCP_GATEWAY_DOMAIN -e MCP_GATEWAY_API_KEY -e MCP_GATEWAY_PAYLOAD_DIR -e MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD -e DEBUG -e MCP_GATEWAY_LOG_DIR -e GH_AW_MCP_LOG_DIR -e GH_AW_SAFE_OUTPUTS -e GH_AW_SAFE_OUTPUTS_CONFIG_PATH -e GH_AW_SAFE_OUTPUTS_TOOLS_PATH -e GH_AW_ASSETS_BRANCH -e GH_AW_ASSETS_MAX_SIZE_KB -e GH_AW_ASSETS_ALLOWED_EXTS -e DEFAULT_BRANCH -e GITHUB_MCP_SERVER_TOKEN -e GITHUB_MCP_LOCKDOWN -e GITHUB_REPOSITORY -e GITHUB_SERVER_URL -e GITHUB_SHA -e GITHUB_WORKSPACE -e GITHUB_TOKEN -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RUN_ATTEMPT -e GITHUB_JOB -e GITHUB_ACTION -e GITHUB_EVENT_NAME -e GITHUB_EVENT_PATH -e GITHUB_ACTOR -e GITHUB_ACTOR_ID -e GITHUB_TRIGGERING_ACTOR -e GITHUB_WORKFLOW -e GITHUB_WORKFLOW_REF -e GITHUB_WORKFLOW_SHA -e GITHUB_REF -e GITHUB_REF_NAME -e GITHUB_REF_TYPE -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GH_AW_SAFE_OUTPUTS_PORT -e GH_AW_SAFE_OUTPUTS_API_KEY -v /tmp/gh-aw/mcp-payloads:/tmp/gh-aw/mcp-payloads:rw -v /opt:/opt:ro -v /tmp:/tmp:rw -v '"${GITHUB_WORKSPACE}"':'"${GITHUB_WORKSPACE}"':rw ghcr.io/github/gh-aw-mcpg:v0.1.8'
actions/setup-cli/install.sh:245
- The
gh extension install ... | tee ...pipeline is not guarded byset -o pipefail, so thisifwill succeed even ifgh extension installfails (becauseteereturns 0). This can incorrectly report a successful install and skip the manual fallback. Capture theghexit code (e.g., viaPIPESTATUS[0]as before) or enablepipefail, and also restore the--pin "$VERSION"path when a non-latestversion is requested.
# Try to install using gh
if gh extension install "$REPO" --force 2>&1 | tee /tmp/gh-install.log; then
# Verify the installation succeeded
if gh aw version &> /dev/null; then
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| const scriptPath = path.join(process.cwd(), "handle_create_pr_error.cjs"); | ||
| scriptContent = fs.readFileSync(scriptPath, "utf8"); | ||
| }), | ||
| afterEach(() => { | ||
| Object.keys(originalEnv).forEach(key => { | ||
| void 0 !== originalEnv[key] ? (process.env[key] = originalEnv[key]) : delete process.env[key]; | ||
| }); | ||
| }), | ||
| describe("when no error message is set", () => { | ||
| it("should skip and not call any API", async () => { | ||
| (delete process.env.CREATE_PR_ERROR_MESSAGE, | ||
| await eval(`(async () => { ${scriptContent}; await main(); })()`), | ||
| expect(mockCore.info).toHaveBeenCalledWith("No create_pull_request error message - skipping"), |
There was a problem hiding this comment.
This test reads the script source and executes it via eval. That approach is unusually fragile in this repo (no other Vitest tests use eval), and can break on CommonJS-only constructs in the evaluated file (e.g., module.exports, require resolution) or when process.cwd() differs. Prefer importing the module like other tests here (e.g., const { main } = await import('./handle_create_pr_error.cjs?t=' + Date.now())) and invoking main() directly, which also avoids the process.cwd()-based path.
| if [ "$TRY_GH_INSTALL" = true ] && command -v gh &> /dev/null; then | ||
| print_info "Attempting to install gh-aw using 'gh extension install'..." | ||
|
|
||
| # Call gh extension install directly to avoid command injection | ||
| install_result=0 | ||
| if [ -n "$VERSION" ] && [ "$VERSION" != "latest" ]; then | ||
| gh extension install "$REPO" --force --pin "$VERSION" 2>&1 | tee /tmp/gh-install.log | ||
| install_result=${PIPESTATUS[0]} | ||
| else | ||
| gh extension install "$REPO" --force 2>&1 | tee /tmp/gh-install.log | ||
| install_result=${PIPESTATUS[0]} | ||
| fi | ||
|
|
||
| if [ $install_result -eq 0 ]; then | ||
| # Try to install using gh | ||
| if gh extension install "$REPO" --force 2>&1 | tee /tmp/gh-install.log; then | ||
| # Verify the installation succeeded |
There was a problem hiding this comment.
The PR description focuses on error handling in handle_create_pr_error, but this change also alters the actions/setup-cli/install.sh installation flow (removes version pinning logic and changes exit-status handling). If this is intentional, it should be called out in the PR description; otherwise it’s likely an accidental, potentially breaking change that should be reverted or split into a separate PR.
This issue also appears on line 242 of the same file.
| # Set output for GitHub Actions | ||
| if [ -n "${GITHUB_OUTPUT}" ]; then | ||
| echo "installed_version=${INSTALLED_VERSION}" >> "${GITHUB_OUTPUT}" | ||
| echo "installed_version=${VERSION}" >> "${GITHUB_OUTPUT}" |
There was a problem hiding this comment.
The Actions output installed_version is being set to ${VERSION}, but the script just computed the actual INSTALLED_VERSION from gh aw version. If VERSION is latest (or empty), this output becomes misleading. Write installed_version=${INSTALLED_VERSION} instead.
| echo "installed_version=${VERSION}" >> "${GITHUB_OUTPUT}" | |
| echo "installed_version=${INSTALLED_VERSION}" >> "${GITHUB_OUTPUT}" |
handle_create_pr_error.cjshad no error handling around its GitHub API calls. Any transient failure (rate limit, network error, permissions) would crash the conclusion job — masking the original PR creation failure and leaving operators with no diagnostic visibility.Changes
handle_create_pr_error.cjs: Wraps the search → create-or-comment reporting sequence in atry/catch. On failure, logs viacore.warning()and returns cleanly instead of throwing. ImportsgetErrorMessagefromerror_helpers.cjsfor consistent error extraction.handle_create_pr_error.test.cjs: Adds coverage for all three API failure paths (search,issues.create,issues.createComment), confirmingcore.setFailedis never called.Mirrors the existing pattern in
handle_agent_failure.cjs(lines 607–880).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/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 64/pkg/tool/linux_amd64/vet git rev-�� --show-toplevel 64/pkg/tool/linux_amd64/vet /usr/bin/git hub/workflows cfg 64/pkg/tool/linu--show-toplevel git(http block)https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1/usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq .object.sha /tmp/TestHashConsistency_GoAndJavaScript3229816982/001/test-frontmatter-with-arrays.md l /usr/bin/git /tmp/go-build421git -trimpath 64/bin/go git add test.txt go /usr/bin/git -json GO111MODULE x_amd64/vet git(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v3/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq .object.sha runs/20260305-035544-27830/test-2709516084/.github/workflows /tmp/go-build268950990/b073/vet.cfg ache/go/1.25.0/x64/pkg/tool/linux_amd64/link 8242caa57cd5fccfgit GO111MODULE 64/bin/go ache/go/1.25.0/x64/pkg/tool/linux_amd64/link 9509�� 950990/b428/timeutil.test 950990/b402/_testmain.go 950990/b428/importcfg.link -errorsas -ifaceassert -nilfunc iiEtxJ64HjgrP/g5FpiJ9ENbZatjTay5oJ/BhqTCoRMGewfss9ZXZGY/X4XoDkfiiEtxJ64HjgrP(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v5/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq .object.sha _.a GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 8XCykaY5J cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq .object.sha --git-dir x_amd64/vet /usr/bin/git -json GO111MODULE x_amd64/vet git rev-�� --show-toplevel X6mK9KE/Es5JHOhs-trimpath /usr/bin/git -json GO111MODULE x_amd64/vet git(http block)https://api.github.com/repos/actions/checkout/git/ref/tags/v6/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq .object.sha --show-toplevel 035174/b404/impo-buildtags cfg k/gh-aw/gh-aw/pkgit k/gh-aw/gh-aw/pkrev-parse 64/bin/go /opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet -ato�� -bool -buildtags /usr/lib/git-core/git -errorsas -ifaceassert -nilfunc /usr/lib/git-core/git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq .object.sha GOMODCACHE 035174/b398/impo-buildtags /opt/hostedtoolcache/node/24.14.0/x64/bin/node che/go-build/23/git **/*.cjs 64/bin/go node /tmp�� /tmp/TestHashConsistency_GoAndJavaScript3229816982/001/test-frontmatter-with-arrays.md /opt/hostedtoolc-buildtags /usr/bin/git /tmp/go-build421git -trimpath 64/bin/go git(http block)/usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq .object.sha --show-toplevel 64/pkg/tool/linuorigin /usr/bin/git -json cfg 64/pkg/tool/linu--show-toplevel git rev-�� --show-toplevel 64/pkg/tool/linux_amd64/vet /usr/bin/git -json cfg w.test git(http block)https://api.github.com/repos/actions/download-artifact/git/ref/tags/v8/usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq .object.sha -json GO111MODULE ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq .object.sha _.a 950990/b142/vet.cfg cfg GOINSECURE GOMOD GOMODCACHE ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/download-artifact/git/ref/tags/v8 --jq .object.sha SameOutput692531641/001/stability-test.md GO111MODULE(http block)https://api.github.com/repos/actions/github-script/git/ref/tags/v8/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq .object.sha GSLM/nwrDxj28hycGOSUMDB GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE 035174/b383/impo-buildtags /hom�� k/gh-aw/gh-aw/pk-errorsas k/gh-aw/gh-aw/pk-ifaceassert 64/bin/go **/*.json --ignore-path ../../../.pretti-bool /opt/hostedtoolc-buildtags(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq .object.sha "prettier" --che-errorsas GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolc/tmp/go-build268950990/b256/vet.cfg -o /tmp/go-build421035174/b362/_pkgGOINSECURE -trimpath 64/bin/go -p github.com/githu-atomic -lang=go1.25 go(http block)/usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq .object.sha pkg/mod/github.com/stretchr/testGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolc/tmp/go-build268950990/b265/vet.cfg -o /tmp/go-build421035174/b385/_pkgGOINSECURE -trimpath 64/bin/go -p github.com/ayman-test.testlogfile=/tmp/go-build268950990/b001/testlog.txt -lang=go1.23 go(http block)https://api.github.com/repos/actions/setup-go/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq .object.sha /tmp/gh-aw-test-runs/20260305-035544-27830/test-1326392920 rev-parse _.a k/gh-aw/gh-aw/pkgit GOPROXY 64/bin/go /opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/link -o /tmp/go-build268950990/b424/testutil.test -importcfg ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet -s -w -buildmode=exe ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/actions/setup-node/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq .object.sha --show-toplevel -goversion ache/node/24.14.0/x64/bin/node -c=4 -nolocalimports -importcfg git t-24�� k/gh-aw/gh-aw/.github/workflows/auto-triage-issues.md test@example.com ache/go/1.25.0/x64/pkg/tool/linux_amd64/compile /tmp/go-build421git -trimpath 64/bin/go ache/go/1.25.0/x64/pkg/tool/linux_amd64/compile(http block)https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq .object.sha --porcelain cfg /opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet -uns�� -unreachable=false /tmp/go-build268950990/b063/vet.cfg 950990/b375/vet.cfg ck '**/*.cjs' '*git GO111MODULE 64/bin/go /opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linu^remote\..*\.gh-resolved$(http block)https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v7/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v7 --jq .object.sha G5LOsqHNN cfg x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env g/cli/access_log.go g/cli/actionlint.go ache/go/1.25.0/x64/pkg/tool/linux_amd64/compile GOINSECURE GOMOD GOMODCACHE ache/go/1.25.0/x64/pkg/tool/linux_amd64/compile(http block)/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v7 --jq .object.sha -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json GO111MODULE tartedAt,updatedAt,event,headBranch,headSha,displayTitle GOINSECURE GOMOD GOMODCACHE ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v7 --jq .object.sha y.md cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 641/001/stability-test.md GO111MODULE ache/go/1.25.0/x64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE ache/go/1.25.0/x64/pkg/tool/linutest@example.com(http block)https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts/usr/bin/gh gh run download 1 --dir test-logs/run-1 GO111MODULE 64/pkg/tool/linu-nolocalimports GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linu/tmp/go-build268950990/b419/_testmain.go env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts/usr/bin/gh gh run download 12345 --dir test-logs/run-12345 GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts/usr/bin/gh gh run download 12346 --dir test-logs/run-12346 GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts/usr/bin/gh gh run download 2 --dir test-logs/run-2 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 0XVD7GS/mRL0tEU7JbrieQ94-F8q env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts/usr/bin/gh gh run download 3 --dir test-logs/run-3 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet stlo�� -json cfg x_amd64/link GOINSECURE GOMOD GOMODCACHE x_amd64/link(http block)https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts/usr/bin/gh gh run download 4 --dir test-logs/run-4 GO111MODULE x_amd64/compile GOINSECURE GOMOD GOMODCACHE x_amd64/compile env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts/usr/bin/gh gh run download 5 --dir test-logs/run-5 GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/actions/workflows/usr/bin/gh gh workflow list --json name,state,path ." lint:cjs 64/bin/go GOSUMDB GOWORK 64/bin/go 035174/b418/impo-buildtags -c che/go-build/ed/-errorsas sh 64/bin/go npx prettier --w/opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet on 64/bin/go go(http block)/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 on 64/bin/go go list�� -m -json 64/bin/go npx prettier --w/usr/bin/git(http block)/usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 6 GOMOD GOMODCACHE x_amd64/vet env -json GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq .object.sha -json GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env -json cfg x_amd64/vet GOINSECURE GOMOD GOMODCACHE x_amd64/vet(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq .object.sha --check scripts/**/*.js 64/bin/go .prettierignore(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq .object.sha --check scripts/**/*.js 64/bin/go .prettierignore(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq .object.sha --porcelain sh 64/bin/go "prettier" --wri/opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet(http block)/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq .object.sha blob 8e88630f0c44d780c66dbc456a655fdfGOMOD 64/bin/go -d(http block)https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0/usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq .object.sha -json GOMOD 64/bin/go -d(http block)https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999/usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq .object.sha -json GO111MODULE 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet env 1755117139/.github/workflows cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE 64/pkg/tool/linux_amd64/vet(http block)https://api.github.com/repos/nonexistent/repo/actions/runs/12345/usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion GOINSECURE GOMOD GOMODCACHE x_amd64/link env -json cfg 64/pkg/tool/linux_amd64/vet GOINSECURE GOMOD GOMODCACHE pU/LCdcE90MYeg_f3TBb3HV/wjRJCy6R-test.v=true(http block)https://api.github.com/repos/owner/repo/actions/workflows/usr/bin/gh gh workflow list --json name,state,path --repo owner/repo 64/bin/go GOSUMDB GOWORK 64/bin/go sh -c "prettier" --che-errorsas node 64/bin/go tierignore --write 64/bin/go go(http block)/usr/bin/gh gh workflow list --json name,state,path --repo owner/repo 64/bin/go GOSUMDB GOWORK 64/bin/go sh -c "prettier" --che-c=4 node 64/bin/go tierignore --write 64/bin/go go(http block)https://api.github.com/repos/owner/repo/contents/file.md/tmp/go-build268950990/b383/cli.test /tmp/go-build268950990/b383/cli.test -test.testlogfile=/tmp/go-build268950990/b383/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true GOINSECURE GOMOD GOMODCACHE 035174/b387/impo-buildtags -c pkg/mod/github.c-errorsas GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolc-buildtags(http block)https://api.github.com/repos/test-owner/test-repo/actions/secrets/usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name tions-lock.json pkg/workflow/data/action_pins.json; \ echo "��� Action pins syn/tmp/go-build268950990/b397/importcfg lint:cjs 64/bin/go GOSUMDB GOWORK 64/bin/go sh -c "prettier" --che-errorsas sh 64/bin/go npx prettier --w/opt/hostedtoolcache/go/1.25.0/x64/pkg/tool/linux_amd64/vet on 64/bin/go /opt/hostedtoolc-buildtags(http block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
handle_create_pr_error: unhandled exceptions on API calls crash conclusion job #19605🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.