Stale contributor shown in repository homepage sidebar #202205
Replies: 2 comments 1 reply
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
You've basically already done the debugging that proves this is a caching issue and not bad Git data: The Contributors widget on the repo homepage is rendered from a separately cached/precomputed dataset, not live from the same endpoint as the Contributors API. That cache can go stale and hold onto an account that was associated with an early commit (often via an email that was later re-attributed or an account that got renamed). Since your reachable history and both APIs are clean, the underlying data is fine, it's just the cached sidebar that's lagging. Two things worth trying:
Community discussions can't clear that cache unfortunately, so support is the reliable path if the new-commit trick doesn't do it. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
Body
Bug description
The Contributors widget on my repository homepage incorrectly shows
two contributors, including an old account named "Nursena Uzar".
Repository:
https://github.com/nursena-pc/payflow
The repository currently has only one valid contributor:
nursena-pc
Verification
git shortlog -sne --allshows only:Nursena Duyku <107357306+nursena-pc@users.noreply.github.com>There are no
Co-authored-bytrailers.The Contributors API returns only
nursena-pc.The Contributor Statistics API returns HTTP 200 and only:
nursena-pc, total: 19.The old contributor does not exist in the reachable Git history.
Expected behavior
The repository homepage Contributors widget should display only
nursena-pc.Actual behavior
The widget still shows two contributors, including "Nursena Uzar".
Could GitHub please refresh or rebuild the cached contributor data for
this repository?
PS C:\Users\nursena\IdeaProjects\payflow> ($response.Content | ConvertFrom-Json) |
login total
nursena-pc 19
All reactions