I posted this answer to the question that you linked to, but it may lead you in the right direction:
I wrote this prolog filter for our Gerrit installation. I did it as a submit_filter in the parent project because I wanted it to apply to all projects in our system.
%filter to require all projects to have a code-reviewer other than the owner
submit_filter(In, Out) :-
%unpack the submit rule into a list of code reviews
In =.. [submit | Ls],
%add the non-owner code review requiremet
reject_self_review(Ls, R),
%pack the list back up and return it (kinda)
Out =.. [submit | R].
reject_self_review(S1, S2) :-
%set O to be the change owner
gerrit:change_owner(O),
%find a +2 code review, if it exists, and set R to be the reviewer
gerrit:commit_label(label('Code-Review', 2), R),
%if there is a +2 review from someone other than the owner, then the filter has no work to do, assign S2 to S1
R \= O, !,
%the cut (!) predicate prevents further rules from being consulted
S2 = S1.
reject_self_review(S1, S2) :-
%set O to be the change owner
gerrit:change_owner(O),
%find a +2 code review, if it exists, and set R to be the reviewer - comment sign was missing
gerrit:commit_label(label('Code-Review', 2), R),
R = O, !,
%if there isn't a +2 from someone else (above rule), and there is a +2 from the owner, reject with a self-reviewed label
S2 = [label('Self-Reviewed', reject(O))|S1].
%if the above two rules didn't make it to the ! predicate, there aren't any +2s so let the default rules through unfiltered
reject_self_review(S1, S1).
The benefits (IMO) of this rule over rule #8 from the cookbook are:
- The
Self-Reviewed
label is only shown when the the change is being blocked, rather than adding a Non-Author-Code-Review
label to every change
- By using
reject(O)
the rule causes the Self-Reviewed
label to literally be a red flag
- As a
submit_filter
instead of a submit_rule
, this rule is installed in a parent project and applies to all sub-projects
Please Note: This rule is authored to prevent the Owner
from self-reviewing a change, while the example from the cookbook compares against the Author
. Depending on your workflow, you may want to replace the 2 gerrit:change_owner(O)
predicates with gerrit:commit_author(O)
or gerrit:commit_committer(O)
label-Code-Review = -2..+2 group Developers
should be present in child project.config? Under which heading? – Garrek