-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get commits from organizations #16
Comments
To the people who want this: Would you be okay with authorizing the app to let it make requests with your token? I can't think of any way to do this with my own token that won't instantly trigger the rate-limit. |
Shall we not first list user organizations and find commits to each orgs ? This may work. |
@mithlesh4257 Writing the code for it isn't really a problem, but let's say I'm a member of I suppose we could run a batch-job for organizations to cache the relevant information. It would mean slightly outdated info, but that's probably okay. It's a bit of work though. |
It seems that it's possible to use the event-api to achieve this:
|
Using the App approach to increase API limits is good, better than the stargaze method |
The event API is basically useless:
|
I would definitely be okay with authenticating. |
This feature would be awesome! |
any news on this? |
@lordadamson no, I've pretty much stopped adding new functionality to this project. If you wanna create a PR I'll merge it though. |
So is getting a user personal key the way to go?
On Apr 26, 2018 16:10, David <[email protected]> wrote:
@lordadamson<https://github.com/lordadamson> no, I've pretty much stopped adding new functionality to this project. If you wanna create a PR I'll merge it though.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#16 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AF6HdCwbRrL3BURaZggT__Pxn9Mfg6DRks5tsdVPgaJpZM4RBU_y>.
|
Probably. Traffic is pretty low on the project these days, so I think it would also be okay to try without, then if the number of requests falls under a certain limit require auth. |
Use case: I have so many repos that I have created organizations for my own projects per language: So I would like to be able to see https://profile-summary-for-github.com/user/dolmen-go |
Note that Commit per quarter doesn't work for an organization: only zeroes. |
I don't have the time to work on this project at the moment, but pull requests are welcome @dolmen ! |
ruslan suggests to get all user commits from orgs via
listUserOrgs(user).forEach { org -> org.repos.forEach { repo -> repo.statictics } }
this will potentially result in thousands of requests, depending on what kind of orgs user is a member of
maybe request limit can be increased if user auths? maybe there is a better way?
The text was updated successfully, but these errors were encountered: