Skip to content
Snippets Groups Projects
Unverified Commit b48a3d30 authored by Marcin Zajączkowski's avatar Marcin Zajączkowski Committed by GitHub
Browse files

fix(github): Typo in token warning message (#20334)

parent d791614e
No related merge requests found
......@@ -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`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment