pull/479/head
Frostebite 2023-01-19 00:03:02 +00:00
parent f02e56a610
commit 5e93fb95af
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -585,7 +585,7 @@ class Cli {
static checksUpdate() {
return __awaiter(this, void 0, void 0, function* () {
const input = JSON.parse(process.env.CHECKS_UPDATE || ``);
core.info(`Checks Update ${input}`);
core.info(`Checks Update ${process.env.CHECKS_UPDATE}`);
if (input.mode === `create`) {
yield github_1.default.createGitHubCheckRequest(input.data);
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -120,7 +120,7 @@ export class Cli {
@CliFunction(`checks-update`, `runs a cloud runner build`)
public static async checksUpdate() {
const input = JSON.parse(process.env.CHECKS_UPDATE || ``);
core.info(`Checks Update ${input}`);
core.info(`Checks Update ${process.env.CHECKS_UPDATE}`);
if (input.mode === `create`) {
await GitHub.createGitHubCheckRequest(input.data);
} else if (input.mode === `update`) {