Merge backstop sweep (GET)
const url = 'https://example.com/api/cron/merge-backstop?dry_run=1&catch_up=1';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/cron/merge-backstop?dry_run=1&catch_up=1'Restored by HO-8020. Runs the merged-role repair, sweepUnmergedTickets (open
un-merged tickets re-classified against recent push events, keyset-paged on
updated_at) and sweepRecentGithubPrs (recently merged PRs that reference an
HO ticket without a closing keyword). Query params: dry_run=1 classifies without
writing, catch_up=1 widens the pass for a backlog drain, before=<ISO> is the
paging cursor echoed back as nextCursor. Protected by CRON_SECRET via the
x-cron-secret header only (no token query parameter).
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Classify and report without writing any merge-close.
Widen the pass (200 tickets, 30 pushes per project, 7-day PR lookback) for a backlog drain.
Keyset cursor — only tickets with updated_at strictly before this timestamp; take it from a previous response’s nextCursor.
Responses
Section titled “ Responses ”Backstop run result
object
True when the ticket sweep stopped before every candidate was seen (full page or deadline).
Pass back as before to continue paging; null when nothing remains.
RepairMergedRolesWhereMergedAtSet counters.
object
SweepUnmergedTickets counters; null when that sweep threw.
SweepRecentGithubPrs counters; null when that sweep threw.
Missing or invalid CRON_SECRET