You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the current method for getting contributors only pulls data from the first page of results. Since the GitHub API splits the results into pages (pagination), only the first set of contributors is retrieved.
Problem
The GitHub API returns commit history across multiple pages. The current setup only grabs contributors from the first page of commit history, missing others.
Suggested Fix
Implement pagination by checking for more pages and combining the results from all pages. This ensures all contributors are included.
The text was updated successfully, but these errors were encountered:
Description
It seems the current method for getting contributors only pulls data from the first page of results. Since the GitHub API splits the results into pages (pagination), only the first set of contributors is retrieved.
Problem
The GitHub API returns commit history across multiple pages. The current setup only grabs contributors from the first page of commit history, missing others.
Suggested Fix
The text was updated successfully, but these errors were encountered: