generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'log-url' of https://github.com/ypresto/deployment-status …
…into ypresto-log-url
- Loading branch information
Showing
4 changed files
with
79 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,78 @@ | ||
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
var __awaiter = | ||
(this && this.__awaiter) || | ||
function (thisArg, _arguments, P, generator) { | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
function fulfilled(value) { | ||
try { | ||
step(generator.next(value)); | ||
} catch (e) { | ||
reject(e); | ||
} | ||
} | ||
function rejected(value) { | ||
try { | ||
step(generator["throw"](value)); | ||
} catch (e) { | ||
reject(e); | ||
} | ||
} | ||
function step(result) { | ||
result.done | ||
? resolve(result.value) | ||
: new P(function (resolve) { | ||
resolve(result.value); | ||
}).then(fulfilled, rejected); | ||
} | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
}); | ||
}; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
}; | ||
var __importStar = | ||
(this && this.__importStar) || | ||
function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
if (mod != null) | ||
for (var k in mod) | ||
if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
return result; | ||
}; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const core = __importStar(require("@actions/core")); | ||
const github = __importStar(require("@actions/github")); | ||
function run() { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
try { | ||
const context = github.context; | ||
const defaultUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/commit/${context.sha}/checks`; | ||
const token = core.getInput("token", { required: true }); | ||
const url = core.getInput("target_url", { required: false }) || defaultUrl; | ||
const description = core.getInput("description", { required: false }) || ""; | ||
const deploymentId = core.getInput("deployment_id"); | ||
const environmentUrl = core.getInput("environment_url", { required: false }) || ""; | ||
const state = core.getInput("state"); | ||
const client = new github.GitHub(token, { previews: ["flash", "ant-man"] }); | ||
yield client.repos.createDeploymentStatus(Object.assign({}, context.repo, { deployment_id: parseInt(deploymentId), state, target_url: url, description, environment_url: environmentUrl })); | ||
} | ||
catch (error) { | ||
core.error(error); | ||
core.setFailed(error.message); | ||
} | ||
}); | ||
return __awaiter(this, void 0, void 0, function* () { | ||
try { | ||
const context = github.context; | ||
const defaultLogUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/commit/${context.sha}/checks`; | ||
const token = core.getInput("token", { required: true }); | ||
const logUrl = | ||
core.getInput("log_url", { required: false }) || | ||
core.getInput("target_url", { required: false }) || | ||
defaultLogUrl; | ||
const description = | ||
core.getInput("description", { required: false }) || ""; | ||
const deploymentId = core.getInput("deployment_id"); | ||
const environmentUrl = | ||
core.getInput("environment_url", { required: false }) || ""; | ||
const state = core.getInput("state"); | ||
const client = new github.GitHub(token, { | ||
previews: ["flash", "ant-man"], | ||
}); | ||
yield client.repos.createDeploymentStatus( | ||
Object.assign({}, context.repo, { | ||
deployment_id: parseInt(deploymentId), | ||
state, | ||
target_url: url, | ||
description, | ||
environment_url: environmentUrl, | ||
}) | ||
); | ||
} catch (error) { | ||
core.error(error); | ||
core.setFailed(error.message); | ||
} | ||
}); | ||
} | ||
run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters