issue create: apply a default priority label (P3) at filing time #161
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The backlog now runs priority-on-everything: every open issue carries a
P0/P1/P2/P3label (see thetooling-issue-prioritizationskill). But that coverage was a one-time cascade. New issues are filed with no priority, so the backlog silently drifts back toward untiered, and the 5/15/30/50 ratio decays. Already saw ~10 untagged issues appear within a day of the pass.Wanted: filing-time default
coily ops forgejo issue createshould apply a default priority label at creation. Default toP3(the someday/low default tier per the skill) so new captures land in the tail, not jump the queue. Allow override with a flag, e.g.--priority P1.Alternative / complement: a sweep
If filing-time defaulting is too invasive, a periodic "untiered issues" sweep (fold into the daily backlog routine) that finds open issues with no
P*label and defaults them toP3keeps coverage at 100% without changing the create path. The two compose: default at create, sweep as backstop.Why
Without one of these, priority-on-everything needs a manual re-cascade every so often. A filing-time default makes the system self-maintaining. See the
tooling-issue-prioritizationskill for the tier definitions and ratio.