Why automerge skipped this PR
This PR has 7 net votes, a rhyming title, passing CI, and no merge conflicts — it should have won today's daily merge. However, it was skipped because the combined commit status API returns pending.
Root cause: The branch protection rules for main require a status check named CI (the workflow name), but GitHub Actions only reports status for individual jobs (CI / build, CI / protect-constitution). The CI check is perpetually stuck at "Expected — Waiting for status to be reported" on every PR, which makes the combined status pending, which the automerge workflow treats as a hard skip.
Fix: In the repo's branch protection settings for main, remove the required status check CI and replace it with CI / build. This will unblock automerge for this PR and all others affected (#187, #193, #160, #183, #209).