From af050fc565d1040be9e6940cf66cb89107d48bce Mon Sep 17 00:00:00 2001 From: morgankrey Date: Wed, 18 Feb 2026 17:19:31 -0600 Subject: [PATCH] Fix git auth conflict in background_agent_mvp workflow (#49537) Fix git auth conflict in background_agent_mvp workflow The workflow was manually configuring git authentication with: ```bash git config --local http.https://github.com/.extraheader "AUTHORIZATION: bearer ..." ``` This conflicted with the authentication already set up by `actions/checkout@v4`, which uses `AUTHORIZATION: basic ...`. The conflict caused all crash pipeline runs to fail with: ``` fatal: could not read Username for 'https://github.com' ``` This morning's run (22147984206) failed for all 15 crash candidates (ZED-4VS, ZED-202, etc.) with this error. Remove the redundant git config since actions/checkout already handles authentication properly. Release Notes: - N/A --- .github/workflows/background_agent_mvp.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/background_agent_mvp.yml b/.github/workflows/background_agent_mvp.yml index f40f44a28a9905c78b290cefb956f98bc4976524..d078db137824a09b8e501362edef8a2f4c6f9b19 100644 --- a/.github/workflows/background_agent_mvp.yml +++ b/.github/workflows/background_agent_mvp.yml @@ -148,8 +148,6 @@ jobs: continue fi - git config --local http.https://github.com/.extraheader "AUTHORIZATION: bearer ${GH_TOKEN}" - if ! git fetch origin main; then echo "WARNING: Failed to fetch origin/main for $CRASH_ID — skipping" continue