allow proxima requests in isGhes check

This commit is contained in:
eggyhead
2024-01-30 21:55:50 +00:00
parent 1fe633e27c
commit 1a1d5e3792
4 changed files with 65 additions and 2 deletions

View File

@@ -27,7 +27,12 @@ export function isGhes(): boolean {
const ghUrl = new URL(
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 isProximaHost = (hostname.endsWith('GHE.COM') || hostname.endsWith('GHE.LOCALHOST'))
return !isGitHubHost && !isProximaHost
}
export function getGitHubWorkspaceDir(): string {