Skip to content

Commit 5885f16

Browse files
committed
fix lint
1 parent 563f462 commit 5885f16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/github/actions/list-workflow-runs/list-workflow-runs.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
type: "integer",
1919
label: "Limit",
2020
description: "The maximum quantity to be returned.",
21-
default: 100
21+
default: 100,
2222
},
2323
},
2424
async run({ $ }) {
@@ -37,7 +37,7 @@ export default {
3737
if (workflowRuns.length === 0) {
3838
break;
3939
}
40-
40+
4141
allWorkflowRuns = allWorkflowRuns.concat(workflowRuns);
4242
count += workflowRuns.length;
4343
page += 1;

0 commit comments

Comments
 (0)