Skip to content

Commit 92fe74c

Browse files
authored
Update runs.js
1 parent 08b1f7d commit 92fe74c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/runs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function ({ octokit, workflow_id, run_id, before }) {
1717
// find any instances of the same workflow
1818
const waiting_for = workflow_runs
1919
// limit to currently running ones
20-
.filter(run => ['in_progress', 'queued', 'waiting', 'pending','action_required', 'requested'].includes(run.status))
20+
.filter(run => ['in_progress', 'queued', 'waiting', 'pending', 'action_required', 'requested'].includes(run.status))
2121
// exclude this one
2222
.filter(run => run.id !== run_id)
2323
// get older runs

0 commit comments

Comments
 (0)