GitHub has the following two pages:
https://github.com/pulls
https://github.com/issues
These show all of your open pull requests and issues irrespective of their repository, would be nice if we could surface this somehow (maybe as an extension to user profiiles #317 if it's my profile?)
I recall there not being APIs for this, but not sure... ๐ค
Sent with GitHawk
@BasThomas v4 request outputs the same information as https://github.com/issues (Haven't checked v3, but we'd want v4 anyway ๐)
query {
viewer {
issues(first: 10, orderBy: { field: CREATED_AT, direction:DESC }) {
nodes {
... on Issue {
title
}
}
}
}
}
One option for this would be to be able to bookmark specific queries, not just entire repos. โ For example, with pull requests and issues:
is:open assignee:benguild
... I often type this manually in, but this seems avoidable if bookmarks supported jumping directly to this screen.
Tracking in #2413
Most helpful comment
@BasThomas v4 request outputs the same information as https://github.com/issues (Haven't checked v3, but we'd want v4 anyway ๐)