correcting bug with async env
parent
d70625087c
commit
1a0fd35c82
|
@ -6538,7 +6538,7 @@ class GitHub {
|
||||||
repo: GitHub.repo,
|
repo: GitHub.repo,
|
||||||
});
|
});
|
||||||
const workflows = workflowsResult.data.workflows;
|
const workflows = workflowsResult.data.workflows;
|
||||||
cloud_runner_logger_1.default.log(`Got ${workflows} workflows`);
|
cloud_runner_logger_1.default.log(`Got ${workflows.length} workflows`);
|
||||||
let selectedId = ``;
|
let selectedId = ``;
|
||||||
for (let index = 0; index < workflowsResult.data.total_count; index++) {
|
for (let index = 0; index < workflowsResult.data.total_count; index++) {
|
||||||
if (workflows[index].name === GitHub.asyncChecksApiWorkflowName) {
|
if (workflows[index].name === GitHub.asyncChecksApiWorkflowName) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -142,7 +142,7 @@ class GitHub {
|
||||||
repo: GitHub.repo,
|
repo: GitHub.repo,
|
||||||
});
|
});
|
||||||
const workflows = workflowsResult.data.workflows;
|
const workflows = workflowsResult.data.workflows;
|
||||||
CloudRunnerLogger.log(`Got ${workflows} workflows`);
|
CloudRunnerLogger.log(`Got ${workflows.length} workflows`);
|
||||||
let selectedId = ``;
|
let selectedId = ``;
|
||||||
for (let index = 0; index < workflowsResult.data.total_count; index++) {
|
for (let index = 0; index < workflowsResult.data.total_count; index++) {
|
||||||
if (workflows[index].name === GitHub.asyncChecksApiWorkflowName) {
|
if (workflows[index].name === GitHub.asyncChecksApiWorkflowName) {
|
||||||
|
|
Loading…
Reference in New Issue