forked from chrnorm/deployment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: adapt input by adding 'transient_environment' and removing dep…
…recated 'target_url'
- Loading branch information
Quentin Gérome
committed
Feb 12, 2020
1 parent
cd2abdf
commit 6841f8c
Showing
3 changed files
with
69 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
"use strict"; | ||
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()); | ||
}); | ||
}; | ||
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]; | ||
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 environment = core.getInput("environment", { required: false }) || "production"; | ||
const description = core.getInput("description", { required: false }); | ||
const initialStatus = core.getInput("initial_status", { | ||
required: false | ||
}) || "pending"; | ||
const autoMergeStringInput = core.getInput("auto_merge", { | ||
required: false | ||
}); | ||
const auto_merge = autoMergeStringInput === "true"; | ||
const transient_environment = core.getInput("transient_environment", { | ||
required: false | ||
}) === "true"; | ||
const client = new github.GitHub(token, { previews: ["flash", "ant-man"] }); | ||
const deployment = yield client.repos.createDeployment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
ref: context.ref, | ||
required_contexts: [], | ||
environment, | ||
transient_environment, | ||
auto_merge, | ||
description | ||
}); | ||
yield client.repos.createDeploymentStatus(Object.assign({}, context.repo, { deployment_id: deployment.data.id, state: initialStatus, log_url: defaultUrl })); | ||
core.setOutput("deployment_id", deployment.data.id.toString()); | ||
} | ||
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