The agents orchestrator and intake workflows are contract-critical automation. They must remain available unless a maintainer deliberately overrides the protections described below. Legacy consumer shims (Agents 61/62) were fully retired; all supported automation now flows through Agents 63 (intake) and Agents 70 (orchestrator).
.github/workflows/agents-63-issue-intake.yml.github/workflows/agents-70-orchestrator.yml.github/workflows/agents-guard.yml
The first two workflows are the only active Agents entry points. The guard
workflow is co-protected because it enforces the protected-workflow policy in
CI; losing or renaming it would remove the automated safety net. Former
consumer wrappers (agents-61-consumer-compat.yml,
agents-62-consumer.yml) must not be reintroduced; the orchestrator surface
replaced them entirely.
- CODEOWNERS gate – the files above are owned by
@stranske. Pull requests cannot merge changes to them without Code Owner approval. In the default branch protection rule, enable Require review from Code Owners so GitHub enforces the restriction automatically. - Repository ruleset – create (or update) a ruleset that targets the default branch and blocks deletions or renames of the covered workflows. Use the protected file patterns listed above and set the bypass mode to Maintainers only so emergencies still require a deliberate maintainer action. Administrators can provision the ruleset through the repository settings (Settings → Code security and analysis → Rulesets → New ruleset → Branch). Capture screenshots of the configuration in the incident log so auditors can confirm the guardrail is in place.
- CI guardrail – the
Health 45 Agents Guardcheck (see.github/workflows/agents-guard.yml) fails any pull request that modifies, deletes, or renames a protected file without the required label and approvals. The only guard-level review exception is for dependency-onlyuses: owner/action@refupdates on protected workflows when the PR hasagents:allow-changeand is authored by Dependabot, Renovate, or a repository owner/member/collaborator. The check documents override steps and prevents merges unless a maintainer explicitly bypasses the branch protection rule. Mark this status check as required on the default branch so the enforcement cannot be skipped accidentally.
- Confirm the incident really requires editing or temporarily removing one of the protected workflows.
- A maintainer with admin access temporarily adjusts the repository ruleset
(or applies a bypass) via Settings → Code security and analysis → Rulesets
and, if required, toggles the
Health 45 Agents Guardstatus check in branch protection. - Apply and review the change in a dedicated pull request. Code Owner approval remains required even when a maintainer performs the edits.
- Re-enable the ruleset block and restore the CI guard immediately after the change merges. Document the incident and restoration steps in the associated issue or runbook entry.
- The default branch protection lists Require review from Code Owners and
includes the files above. The
Health 45 Agents Guardstatus check is marked as required. - The repository ruleset shows the three workflows in its “Protected file
patterns section (
agents-63-issue-intake.yml,agents-70-orchestrator.yml, andagents-guard.yml) with Block deletion and Block rename enabled. - A maintainer can describe the override procedure without referencing this document (spot check during ops reviews).