Gerrit filter for items I need to view

I am trying to create a search query that will tell me open changes, which I will add as a reviewer, but which I did not provide a code review for the last set of patches. This should include the changes that other people gave for the review, but I did not.

The closest I could find was is:reviewer AND -is:reviewed AND status:open, but this does not include the changes that other people looked at, but I did not.

+4
source share
2 answers

is:reviewer AND status:open AND -label:Code-Review=+2

You can also change value = + 2 to> = 1.

+2
source

, , , , , .

is:reviewer AND is:open AND NOT label:Code-Review>=-2,userid

userid ( ).

, . . https://review.openstack.org/Documentation/user-search.html#labels

+2

Source: https://habr.com/ru/post/1525620/


All Articles