the stale-claim sweep tries to skip issues marked long-running:
// .github/workflows/unassign-stale.yml:54
if (labels.includes('pinned') || labels.includes('long-running')) continue;
gh label list -R optiqor/optiqor-cli doesn't include long-running. the skip is dead code. pinned exists so the parallel branch works, which is what makes the dead branch easy to miss.
either:
- create the
long-running label and document when a maintainer should apply it
- drop the
long-running clause and update the comment that promises the exception
pick whichever matches actual intent. one-liner either way.
the stale-claim sweep tries to skip issues marked
long-running:gh label list -R optiqor/optiqor-clidoesn't includelong-running. the skip is dead code.pinnedexists so the parallel branch works, which is what makes the dead branch easy to miss.either:
long-runninglabel and document when a maintainer should apply itlong-runningclause and update the comment that promises the exceptionpick whichever matches actual intent. one-liner either way.