From GitHub.com, I'd like to see all open PRs where I am the author, reviewer, or assignee, whether as an individual or as a member of a team.
From github.com/pulls, I can filter with something like is:open is:pr author:@me
but effectively I would like to OR or UNION such a filter. Ideally, I wish I could do something like the following, where '|' is the OR operator--but sadly this doesn't work: is:open is:pr author:@me|reviewed-by:@me|review-requested:@me|mentions:@me
.
Any idea how I might do this? This answer was helpful but doesn't go far enough.