reviewed-for

The reviewed_for = "required" setting only counts a review if the review body contains a Reviewed-for: <scope_name> line. This forces users to be explicit about what they are reviewing the PR for.

A common use case for this is with high-level global ownership scopes that can approve any change in the repo. Adding reviewed-for to this scope can prevent accidental approvals during regular reviews, if the reviewers are involved in multiple scopes.

[[scopes]]
name = "global"
paths = ["*"]
reviewers = ["admin1"]
reviewed_for = "required"
ownership = "global"

[[scopes]]
name = "design"
paths = ["*.css"]
reviewers = ["admin1"]