mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 11:40:39 +09:00
13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
import type { LiveRunForIssue } from "../api/heartbeats";
|
|
|
|
function isLiveRunStatus(status: string): boolean {
|
|
return status === "queued" || status === "running";
|
|
}
|
|
|
|
export function collectLiveIssueIds(liveRuns: readonly LiveRunForIssue[] | null | undefined): Set<string> {
|
|
const ids = new Set<string>();
|
|
for (const run of liveRuns ?? []) {
|
|
if (run.issueId && isLiveRunStatus(run.status)) ids.add(run.issueId);
|
|
}
|
|
return ids;
|
|
}
|