Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/agents-auto-pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,8 @@ jobs:
})
);
const recentRuns = runs.workflow_runs.filter(
r => new Date(r.created_at) >= dispatchedAt
r => new Date(r.created_at) >= dispatchedAt &&
r.event === 'workflow_dispatch'
);
const alive = recentRuns.find(
r => r.status === 'queued' || r.status === 'in_progress'
Expand Down Expand Up @@ -2462,7 +2463,8 @@ jobs:
);
const cutoff = new Date(Date.now() - 30 * 60 * 1000);
const recentRuns = runs.workflow_runs.filter(
r => new Date(r.created_at) >= cutoff
r => new Date(r.created_at) >= cutoff &&
r.event === 'workflow_dispatch'
);
const alive = recentRuns.find(
r => r.status === 'queued' || r.status === 'in_progress'
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/agents-keepalive-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,6 @@ jobs:
- evaluate
- run-codex
- run-claude
- progress-review
# Run if PR exists, handle skipped/failed agent jobs gracefully
# run-codex will be skipped when action != run/fix/conflict, which is expected
if: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,8 @@ jobs:
})
);
const recentRuns = runs.workflow_runs.filter(
r => new Date(r.created_at) >= dispatchedAt
r => new Date(r.created_at) >= dispatchedAt &&
r.event === 'workflow_dispatch'
);
const alive = recentRuns.find(
r => r.status === 'queued' || r.status === 'in_progress'
Expand Down Expand Up @@ -2386,7 +2387,8 @@ jobs:
);
const cutoff = new Date(Date.now() - 30 * 60 * 1000);
const recentRuns = runs.workflow_runs.filter(
r => new Date(r.created_at) >= cutoff
r => new Date(r.created_at) >= cutoff &&
r.event === 'workflow_dispatch'
);
const alive = recentRuns.find(
r => r.status === 'queued' || r.status === 'in_progress'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,6 @@ jobs:
- evaluate
- run-codex
- run-claude
- progress-review
# Run if PR exists, handle skipped/failed agent jobs gracefully
# run-codex will be skipped when action != run/fix/conflict, which is expected
if: |
Expand Down
Loading