mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
fix: log GHES version
This commit is contained in:
parent
143d72c600
commit
381481ace1
1 changed files with 3 additions and 0 deletions
|
@ -108,6 +108,9 @@ export async function detectGhe(token: string): Promise<void> {
|
||||||
([k]) => k.toLowerCase() === gheHeaderKey
|
([k]) => k.toLowerCase() === gheHeaderKey
|
||||||
) ?? [];
|
) ?? [];
|
||||||
platformConfig.gheVersion = semver.valid(gheVersion as string) ?? null;
|
platformConfig.gheVersion = semver.valid(gheVersion as string) ?? null;
|
||||||
|
logger.debug(
|
||||||
|
`Detected GitHub Enterprise Server, version: ${platformConfig.gheVersion}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue