mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
fix(composer): strip app x-access-token prefix from token
This commit is contained in:
parent
c234428fd5
commit
32181ae6c2
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ function getAuthJson(): string | null {
|
|||
});
|
||||
if (githubCredentials?.token) {
|
||||
authJson['github-oauth'] = {
|
||||
'github.com': githubCredentials.token,
|
||||
'github.com': githubCredentials.token.replace('x-access-token:', ''),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue