After the authentication user gets an access token. Use the token to query the Github graph API to retrieve the list of repositories that were pushed to in the past month.
The token is stored in the sessionStorage https://github.com/Dasmicrobot/github-activity/blob/master/src/githubCallback.js#L15
As an example the shell script implementation uses the REST API and pulls all the accessible repositories and then filters out them by looking into the pushed_at value https://github.com/ivarprudnikov/my_commit_history/blob/master/main.sh#L32-L61
After the authentication user gets an access token. Use the token to query the Github graph API to retrieve the list of repositories that were pushed to in the past month.
The token is stored in the
sessionStoragehttps://github.com/Dasmicrobot/github-activity/blob/master/src/githubCallback.js#L15As an example the shell script implementation uses the REST API and pulls all the accessible repositories and then filters out them by looking into the
pushed_atvalue https://github.com/ivarprudnikov/my_commit_history/blob/master/main.sh#L32-L61