You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is now deliberately public (owner-confirmed), but its CI still carries the private fleet-consumer posture: .github/runner-policy.json declares private + selfHostedCi: true, and every workflow consumes the governed local-runner selector. The runner-policy revision delivered by the standards sync (#345) enforces that public repos declare public, set selfHostedCi: false, and do not call the local-runner selector at all — so the sync PR and the merge queue behind it (#332, #344) are blocked until this migration lands.
Migrate all workflows off select-runner.yml to direct hosted runners (fleet policy already excludes public repos from self-hosted groups; live selection already routes hosted).
Context
This repo is now deliberately public (owner-confirmed), but its CI still carries the private fleet-consumer posture:
.github/runner-policy.jsondeclaresprivate+selfHostedCi: true, and every workflow consumes the governed local-runner selector. The runner-policy revision delivered by the standards sync (#345) enforces that public repos declarepublic, setselfHostedCi: false, and do not call the local-runner selector at all — so the sync PR and the merge queue behind it (#332, #344) are blocked until this migration lands.Ask
.github/runner-policy.json:visibility: public,selfHostedCi: false.select-runner.ymlto direct hosted runners (fleet policy already excludes public repos from self-hosted groups; live selection already routes hosted).Related