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 08b1f7d commit 92fe74cCopy full SHA for 92fe74c
src/lib/runs.js
@@ -17,7 +17,7 @@ export default async function ({ octokit, workflow_id, run_id, before }) {
17
// find any instances of the same workflow
18
const waiting_for = workflow_runs
19
// limit to currently running ones
20
- .filter(run => ['in_progress', 'queued', 'waiting', 'pending','action_required', 'requested'].includes(run.status))
+ .filter(run => ['in_progress', 'queued', 'waiting', 'pending', 'action_required', 'requested'].includes(run.status))
21
// exclude this one
22
.filter(run => run.id !== run_id)
23
// get older runs
0 commit comments