We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563f462 commit 5885f16Copy full SHA for 5885f16
components/github/actions/list-workflow-runs/list-workflow-runs.mjs
@@ -18,7 +18,7 @@ export default {
18
type: "integer",
19
label: "Limit",
20
description: "The maximum quantity to be returned.",
21
- default: 100
+ default: 100,
22
},
23
24
async run({ $ }) {
@@ -37,7 +37,7 @@ export default {
37
if (workflowRuns.length === 0) {
38
break;
39
}
40
-
+
41
allWorkflowRuns = allWorkflowRuns.concat(workflowRuns);
42
count += workflowRuns.length;
43
page += 1;
0 commit comments