Compare commits

...
1 Commits
v5 ... v4
Author SHA1 Message Date
Earl Warren 16871d9e8c v4.3.1: disable GHES check 2024-03-21 13:59:27 +01:00
2 changed files with 4 additions and 12 deletions
+1 -5
View File
@@ -3023,11 +3023,7 @@ function getResultsServiceUrl() {
}
exports.getResultsServiceUrl = getResultsServiceUrl;
function isGhes() {
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
const isGitHubHost = hostname === 'GITHUB.COM';
const isGheHost = hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST');
return !isGitHubHost && !isGheHost;
return false;
}
exports.isGhes = isGhes;
function getGitHubWorkspaceDir() {
+1 -5
View File
@@ -3023,11 +3023,7 @@ function getResultsServiceUrl() {
}
exports.getResultsServiceUrl = getResultsServiceUrl;
function isGhes() {
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
const isGitHubHost = hostname === 'GITHUB.COM';
const isGheHost = hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST');
return !isGitHubHost && !isGheHost;
return false;
}
exports.isGhes = isGhes;
function getGitHubWorkspaceDir() {