@@ -29760,7 +29760,7 @@ class NextRunFinder {
2976029760 .truncatedTo(ChronoUnit.SECONDS);
2976129761 for (let i = 0; i < 30; i++) {
2976229762 const response = await this.octokit.actions.listWorkflowRuns({
29763- created: `${minCreated}... ${maxCreated}`,
29763+ created: `${minCreated}..${maxCreated}`,
2976429764 event: "workflow_dispatch",
2976529765 owner: this.params.owner,
2976629766 ref: this.params.ref,
@@ -29819,7 +29819,7 @@ class MarkerRunFinder {
2981929819 .truncatedTo(ChronoUnit.SECONDS);
2982029820 for (let i = 0; i < 30; i++) {
2982129821 const response = await this.octokit.actions.listWorkflowRuns({
29822- created: `${minCreated}... ${maxCreated}`,
29822+ created: `${minCreated}..${maxCreated}`,
2982329823 event: "workflow_dispatch",
2982429824 owner: this.params.owner,
2982529825 ref: this.params.ref,
@@ -29901,12 +29901,11 @@ async function main() {
2990129901 coreExports.info("Created workflow dispatch");
2990229902 const runId = await runFinder.find();
2990329903 if (runId === undefined) {
29904- coreExports.info("Could not find created workflow run");
2990529904 if (wait) {
2990629905 coreExports.setFailed("Could not find workflow run");
2990729906 }
2990829907 else {
29909- coreExports.warning("Could not find workflow run", { title: "Workflow Dispatch" } );
29908+ coreExports.warning("Could not find workflow run");
2991029909 }
2991129910 return;
2991229911 }
0 commit comments