-
Notifications
You must be signed in to change notification settings - Fork 92
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
Add support for tracking commits pushed to branch (core) #601
base: main
Are you sure you want to change the base?
Add support for tracking commits pushed to branch (core) #601
Conversation
👷 Deploy request for leaderboard-develop pending review.Visit the deploys page to approve it
|
How can i test the scraper for debugging? i can't run it on local machine? |
There were two directions for each fetched Fork
i went with the second one for now. |
Not a fan of N+1 approach. If this was deployed for a much bigger github org, which has too many forks, fetching commit history of each fork's branches might go off the limits pretty quickly. Let's do a 2 part PR. Let's first get the org's repo commits tracked first. We can figure out something for the fork's. We only ideally care about commits pushed directly to default branch and commits pushed to PR branches alone. |
This reverts commit ae0677a.
I do agree with you, Please check this out #602 (comment) |
Fixes #373
pushed_commits
tracking for core team members with direct push access to orgpushed_commits
tracking for non-core team contributors through forked repositories (Add support for tracking commits pushed to branch (Forked) #602)