Last active
August 29, 2015 13:56
-
-
Save smerritt/8795447 to your computer and use it in GitHub Desktop.
Gerrit queries that I use to help me find stuff in the howling torrent of pending reviews. For best results, paste them in the Gerrit search box and bookmark the resulting page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Starred reviews | |
# I star something when I want to follow it and make sure it gets in; that way I can find it again. | |
# I never have more than a half-dozen things starred at a time, or else it's pointless. | |
is:starred | |
# My pending changes | |
status:open AND owner:torgomatic | |
# Everything Swift-related that's ready for review (no WIP stuff) | |
status:open AND -status:workinprogress AND (project:openstack/swift OR project:openstack/python-swiftclient OR project:openstack/swift-bench OR project:openstack/object-api) | |
# Everything Swift-related with a +2 from someone else but not from me. | |
# They just need one more +2/+A to be merged. | |
-owner:torgomatic AND -reviewer:torgomatic AND status:open AND (project:openstack/swift OR project:openstack/object-api OR project:openstack/swift-bench) AND CodeReview+2 AND Verified+1 AND -Verified-1 AND -CodeReview-2 AND -Approved+1 | |
# Changes that I've reviewed before | |
status:open AND -status:workinprogress AND reviewer:torgomatic AND -owner:torgomatic | |
# Swift-related changes that I've never reviewed before | |
status:open AND -status:workinprogress AND -reviewer:torgomatic AND -owner:torgomatic AND (project:openstack/swift OR project:openstack/python-swiftclient OR project:openstack/swift-bench OR project:openstack/object-api) | |
# Swift-related changes that no core dev has looked at | |
-reviewer:torgomatic AND -reviewer:notmyname AND -reviewer:gholt AND -reviewer:peter-a-portante AND -reviewer:darrellb AND -reviewer:chmouel AND -reviewer:clay-gerrard AND -reviewer:zaitcev AND -reviewer:david-goetz AND -reviewer:cthier AND -reviewer:redbo AND -reviewer:greglange AND status:open AND -status:workinprogress AND (project:openstack/swift OR project:openstack/python-swiftclient OR project:openstack/swift-bench OR project:openstack/object-api) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment