From 3d7b69e74258c4aa8dc6973b613a70cde01e89ba Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Mon, 1 Sep 2025 16:39:27 -0300 Subject: [PATCH] SIENTIAPDE-1084 Refactor Git configuration in quality-gate.yml to remove redundant SSH URL replacement for OAuth2 authentication --- .github/workflows/quality-gate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/quality-gate.yml b/.github/workflows/quality-gate.yml index 4633fd3..c9dde30 100644 --- a/.github/workflows/quality-gate.yml +++ b/.github/workflows/quality-gate.yml @@ -44,7 +44,6 @@ jobs: run: | git config --global url."https://oauth2:${GH_APP_TOKEN}@github.com/".insteadOf "ssh://git@github.com/" git config --global url."https://oauth2:${GH_APP_TOKEN}@github.com/".insteadOf "https://github.com/" - git config --global url."https://oauth2:${GH_APP_TOKEN}@github.com/".insteadOf "git@github.com:" - name: 🔧 Setup Python uses: actions/setup-python@v4