A dashboard to look at pull requests grouped by author, based on certain filters
- Start a live server
python -m SimpleHTTPServer 8081
- Dashboard will be live at http://localhost:8081
- Create a personal token on Github https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
- Token should have
public_repo
,read:org
,read:user
,repo:status
scopes - Store the personal token inside local storage at http://localhost:8081, via browser console as
localStorage.setItem("github_token", "<PERSONAL TOKEN>")
The http://localhost:8081 supports a query parameter q
, similar to searches supported by Github Search APIs.
An example query would look like http://localhost:8081?q=org:hypertrace+author:skjindal93