async pipeline
parent
2b2c6e5518
commit
0f3b6277f0
|
|
@ -718,7 +718,7 @@ class CloudRunnerOptions {
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
// GitHub parameters
|
// GitHub parameters
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
static get githubChecksEnabled() {
|
static get githubChecks() {
|
||||||
return CloudRunnerOptions.getInput('githubChecks') || false;
|
return CloudRunnerOptions.getInput('githubChecks') || false;
|
||||||
}
|
}
|
||||||
static get githubOwner() {
|
static get githubOwner() {
|
||||||
|
|
@ -6332,7 +6332,7 @@ const cloud_runner_options_1 = __importDefault(__nccwpck_require__(96552));
|
||||||
class GitHub {
|
class GitHub {
|
||||||
static createGitHubCheck(summary) {
|
static createGitHubCheck(summary) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
if (!cloud_runner_options_1.default.githubChecksEnabled || cloud_runner_options_1.default.asyncCloudRunner) {
|
if (!cloud_runner_options_1.default.githubChecks || cloud_runner_options_1.default.asyncCloudRunner) {
|
||||||
return ``;
|
return ``;
|
||||||
}
|
}
|
||||||
const sha = cloud_runner_1.default.buildParameters.gitSha;
|
const sha = cloud_runner_1.default.buildParameters.gitSha;
|
||||||
|
|
@ -6376,7 +6376,7 @@ class GitHub {
|
||||||
}
|
}
|
||||||
static updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
|
static updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
if (!cloud_runner_options_1.default.githubChecksEnabled || cloud_runner_options_1.default.asyncCloudRunner) {
|
if (!cloud_runner_options_1.default.githubChecks || cloud_runner_options_1.default.asyncCloudRunner) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
GitHub.longDescriptionContent += `\n${longDescription}`;
|
GitHub.longDescriptionContent += `\n${longDescription}`;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -59,7 +59,7 @@ class CloudRunnerOptions {
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
// GitHub parameters
|
// GitHub parameters
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
static get githubChecksEnabled() {
|
static get githubChecks() {
|
||||||
return CloudRunnerOptions.getInput('githubChecks') || false;
|
return CloudRunnerOptions.getInput('githubChecks') || false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ class GitHub {
|
||||||
private static endedDate: string;
|
private static endedDate: string;
|
||||||
|
|
||||||
public static async createGitHubCheck(summary) {
|
public static async createGitHubCheck(summary) {
|
||||||
if (!CloudRunnerOptions.githubChecksEnabled || CloudRunnerOptions.asyncCloudRunner) {
|
if (!CloudRunnerOptions.githubChecks || CloudRunnerOptions.asyncCloudRunner) {
|
||||||
return ``;
|
return ``;
|
||||||
}
|
}
|
||||||
const sha = CloudRunner.buildParameters.gitSha;
|
const sha = CloudRunner.buildParameters.gitSha;
|
||||||
|
|
@ -57,7 +57,7 @@ class GitHub {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
|
public static async updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
|
||||||
if (!CloudRunnerOptions.githubChecksEnabled || CloudRunnerOptions.asyncCloudRunner) {
|
if (!CloudRunnerOptions.githubChecks || CloudRunnerOptions.asyncCloudRunner) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
GitHub.longDescriptionContent += `\n${longDescription}`;
|
GitHub.longDescriptionContent += `\n${longDescription}`;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue