Github Get Repo Stars Since
github_get_repo_stars_sinceFind which GitHub repos owned by a user gained the most new stars since a given date, defaulting to the last 30 days. Enter a username and optional date to rank repos by star growth.
Instructions
Return the repos owned by username that received the most new stars since a given date. since accepts YYYY-MM-DD or ISO 8601, defaulting to 30 days ago. Answers prompts like 'which repos gained the most stars in the last 30 days'. Counts come from the weekly star history, so they resolve to whole UTC days rather than to exact star timestamps. Cost is one request for each page of the repo listing, then roughly one request per repo for every 30 weeks of the window, which makes a 30-day window a single request per repo however popular that repo is. truncated is True when the account has more public repos than the listing could read, or when a repo's history ran longer than the walk could read, so the answer may miss some.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | ||
| top_n | No | ||
| username | Yes | ||
| max_repos | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repos | Yes | ||
| since | Yes | ||
| username | Yes | ||
| truncated | Yes |