Skip to content

Commit

Permalink
fix(github): Typo in token warning message (#20334)
Browse files Browse the repository at this point in the history
  • Loading branch information
szpak committed Feb 10, 2023
1 parent d791614 commit b48a3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/workers/global/config/parse/env.ts
Expand Up @@ -135,7 +135,7 @@ export function getConfig(inputEnv: NodeJS.ProcessEnv): AllConfig {
if (env.GITHUB_COM_TOKEN) {
if (env.GITHUB_COM_TOKEN.startsWith('github_pat_')) {
logger.warn(
'GITHUB_COM_TOKEN: Fine-grained Personal Access Tokens do not support do not support the GitHub GraphQL API. Use a classic PAT instead.'
'GITHUB_COM_TOKEN: Fine-grained Personal Access Tokens do not support the GitHub GraphQL API. Use a classic PAT instead.'
);
} else {
logger.debug(`Converting GITHUB_COM_TOKEN into a global host rule`);
Expand Down

0 comments on commit b48a3d3

Please sign in to comment.