pub fn milestone_list_argv(slug: &str) -> Vec<String>Expand description
Argv for gh api --paginate repos/<slug>/milestones?state=all&per_page=100.
Two contract bits worth pinning:
state=all— without it, the default endpoint only listsopenmilestones andgwm milestones push --prunewould silently leave closed ones in place.--paginate— GitHub capsper_pageat 100. Without paginating we’d diff against a truncated remote set for repos with more than 100 milestones, leading to boguscreaterows and a dangerously confusing--prune(Copilot review on PR #92).