Revise isGhes logic

This commit is contained in:
John Wesley Walker III 2024-10-18 13:23:42 +02:00 committed by GitHub
parent 8469c94c6a
commit d73025053b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,9 +5,15 @@ import { RefKey } from "../constants";
export function isGhes(): boolean {
const ghUrl = new URL(
process.env["GITHUB_SERVER_URL"] || "https://github.com"
process.env['GITHUB_SERVER_URL'] || 'https://github.com'
);
return ghUrl.hostname.toUpperCase() !== "GITHUB.COM";
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
const isGitHubHost = hostname === 'GITHUB.COM'
const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM')
const isLocalHost = hostname.endsWith('.LOCALHOST')
return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost
}
export function isExactKeyMatch(key: string, cacheKey?: string): boolean {