Is it possible to get a list of pull requests that have touched any file under a given directory?
The other day, I had to wade through dozens of pull requests from the past several months and collect all the ones that had touched any file in under a particular path of interest.
I tried to search PRs using the file path on GitHub, but it didn't seem like file paths were indexed. Poking around a bit further, I couldn't really find a solution for file searching in pull requests, which was sort of surprising. I eventually had to go through the commit history of various directories and collect the related PRs, but it was fairly tedious.
Is there any support for summarizing PRs by affected files in GitHub? Perhaps this is something the API is capable of?