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
feat(github): add exponential backoff retry for GitHub API calls
Wraps all fetch calls to the GitHub GraphQL and REST APIs with an
exponential backoff retry helper. Retries only on network errors,
429 Too Many Requests, and 5xx server errors (up to 3 attempts with
500ms → 1s → 2s delays). All 4xx client errors return immediately
without retrying to avoid duplicate requests on non-transient failures.
0 commit comments