1

I am looking for a way to build a filter like:

Reviewed by me but not reviewed by user xyz

I know I can do a OR search for labels but I cant find anything for other properties.

What I expected to work was

is:open is:pr reviewed-by:@me -reviewed-by:xyz 
  1. Is it possible to do something like this?
  2. If not, is it possible to export all issues to an excel sheet so I can filter it there?

1 Answers1

0

A 2020 answer states:

The GitHub global search (top-left bar on any page on https://github.com) seems to have an implicit AND between all search fields, and an implicit OR between fields you reuse:

So:

is:open is:pr reviewed-by:@me -reviewed-by:xyz

should act as:

is:open AND is:pr AND (reviewed-by:@me OR -reviewed-by:xyz)

Which might not be what you want.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250