From 9b024227a454e76ffef741fe282525e4147d6ea7 Mon Sep 17 00:00:00 2001 From: Florian Kleedorfer Date: Mon, 9 Feb 2026 14:20:01 +0100 Subject: [PATCH] Fix duplicate Authentication header in github action --- .github/workflows/release-and-deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-and-deploy.yml b/.github/workflows/release-and-deploy.yml index 40bff33..e0e83d6 100644 --- a/.github/workflows/release-and-deploy.yml +++ b/.github/workflows/release-and-deploy.yml @@ -143,6 +143,11 @@ jobs: version: ${{ inputs.release_version }} operation: read + - name: Unset git extraheader (prevent duplicate Authorization) + run: | + git config --global --unset http.https://github.com/.extraheader || true + git config --local --unset http.https://github.com/.extraheader || true + # create the pull request - name: Create Pull Request uses: peter-evans/create-pull-request@v6