Fix use of wrong URL

This commit is contained in:
Robert Brignull 2020-08-26 13:26:36 +01:00
parent 3ffe4b7421
commit f5d645fc73
19 changed files with 19 additions and 34 deletions

6
lib/util.js generated
View file

@ -18,10 +18,6 @@ const sharedEnv = __importStar(require("./shared-environment"));
* The URL for github.com.
*/
exports.GITHUB_DOTCOM_URL = "https://github.com";
/**
* The API URL for github.com.
*/
exports.GITHUB_DOTCOM_API_URL = "https://api.github.com";
/**
* Get an environment parameter, but throw an error if it is not set.
*/
@ -234,7 +230,7 @@ exports.createStatusReportBase = createStatusReportBase;
* Returns whether sending the status report was successful of not.
*/
async function sendStatusReport(statusReport, ignoreFailures) {
if (getRequiredEnvParam("GITHUB_API_URL") !== exports.GITHUB_DOTCOM_API_URL) {
if (getRequiredEnvParam("GITHUB_SERVER_URL") !== exports.GITHUB_DOTCOM_URL) {
core.debug("Not sending status report to GitHub Enterprise");
return true;
}