list_starred_repos
List repositories starred by the authenticated GitHub user, with options to sort by creation or last push date and paginate results.
Instructions
List repositories starred by the authenticated user. Returns an array of repository objects including id, name, full_name, html_url, description, stargazers_count, language, and owner. Sort by created (when the user starred it) or updated (when the repo was last pushed to). Paginate with page and per_page. Docs: https://docs.github.com/en/rest/activity/starring#list-repositories-starred-by-the-authenticated-user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| sort | No | Sort starred repositories by created (date the authenticated user starred the repo, default) or updated (date the repo was last pushed to). | |
| per_page | No | ||
| direction | No | Sort direction: asc or desc. Default is desc. |