fix: restore Basic prefix on Gitea Authorization header

GITEA_AUTH_HEADER in GCP Secret Manager is the raw base64 credential,
not the full header value. The 'Basic ' prefix is required.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vaibhav Pathak 2026-05-21 16:13:18 +05:30
parent a1342390e2
commit 3a8db0317a

View File

@ -108,7 +108,7 @@ data:
changeOrigin: true
secure: false
headers:
Authorization: ${GITEA_AUTH_HEADER}
Authorization: 'Basic ${GITEA_AUTH_HEADER}'
'/github/api':
target: 'https://api.github.com'