Global configuration of the reviewers plugin is done in the reviewers.config file in the site’s etc directory.
[reviewers]
enableREST = true
suggestOnly = false
ignoreWip = false
mergeFilters = true
false, the REST API is not available. Defaults to true.false. By default Gerrit will consider the suggestions with a weight of 1. To force the suggestions higher in the list, set a higher value (like 1000) in addReviewer.reviewers-reviewer-suggestion.weight in gerrit.config.true changes in WIP state are not considered when adding reviewers. Defaults to true. To enable adding reviewers on changes in WIP state set this value to false.false filter-sections in child project will override filter-sections, with identical filters, in the parent project(s). Defaults to true.Per project configuration of the reviewers plugin is done in the reviewers.config file of the refs/meta/config branch of the project. Missing values are inherited from the parent projects. This means a global default configuration can be done in the reviewers.config file of the All-Projects root project. Other projects can then override the configuration in their own reviewers.config file.
Editing per project configuration requires Owner or Administrator privileges. Per project configuration can be edited in the Web UI through the “Edit reviewers config” action on the project’s repo command page. You could also choose to edit the reviewers.config file through the inline edit feature.
[filter "*"]
reviewer = john.doe@example.com
cc = DevGroup
[filter "branch:main file:^lib/.*"]
reviewer = jane.doe@example.com
[filter "branch:stable-2.10"]
reviewer = QAGroup
reviewer occurrences are allowed.cc occurrences are allowed.The plugin supports multiple filter matches. If a reviewer, according to filter matches, should be added as both reviewer and cc, reviewer takes precedence.
[filter "file:^build/modules/.*"]
reviewer = john.doe@example.com
[filter "file:^build/.*"]
reviewer = jane.doe@example.com