Unable to Pin a Public Repository I Contributed To #164919
-
Select Topic AreaBug BodyHi GitHub Support / Community, I'm experiencing an issue with pinning a public repository to my GitHub profile. I contributed to the following repository: https://github.com/pantherfoundation/panther-core, but it doesn't appear in the list of repositories available to pin on my profile. I’ve confirmed the following: Despite this, the repository still isn’t available in the pinning options. Is there a way to resolve this or manually include the repository in my pinned list? Thank you in advance for your help! Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
💬 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. ⭐ |
Beta Was this translation helpful? Give feedback.
-
Hi @SushmaVaradaiah-PP , It sounds like you're facing an issue with pinning a repository that you’ve contributed to, but it's not showing up in your pinned repositories list. Here are a few things to check:
As a workaround:If the repo is still not showing up in the pinning options, you can always manually pin it by going to your GitHub profile, selecting Edit Profile, and adding it as a pinned repository. This can be done without needing it to show up in the auto-suggest list. If everything seems in order and it’s still not showing, it might be a bug or a GitHub-specific issue. I’d recommend reaching out to GitHub Support if the issue persists: GitHub Support. Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
This is a common issue with GitHub's pinning system. There are a few potential causes and solutions: Most Likely Causes1. Contribution Detection IssuesGitHub sometimes doesn't recognize contributions properly. Check: # Verify your commits are properly attributed
git log --author="[email protected]" --oneline 2. Repository Ownership/Fork Status
SolutionsOption 1: Fork the Repository# Fork the repository first, then pin your fork
gh repo fork pantherfoundation/panther-core Then pin Option 2: Check Contribution Settings
Option 3: Wait for GitHub's Cache UpdateSometimes it takes 24-48 hours for contributions to be recognized. Try:
Option 4: Manual WorkaroundIf the above doesn't work, you can:
Verification Steps# Check if your commits are properly attributed
curl -s "https://api.github.com/repos/pantherfoundation/panther-core/contributors" | jq '.[] | select(.login=="SushmaVaradaiah-PP")' The most likely solution is Option 1 - forking the repository, since GitHub's pinning system primarily works with repositories you own or have forked. Let me know if you try the fork approach and whether that resolves the issue! |
Beta Was this translation helpful? Give feedback.
This is a common issue with GitHub's pinning system. There are a few potential causes and solutions:
Most Likely Causes
1. Contribution Detection Issues
GitHub sometimes doesn't recognize contributions properly. Check:
2. Repository Ownership/Fork Status
Solutions
Option 1: Fork the Repository
# Fork the repository first, then pin your fork gh repo fork pantherfoundation/panther-core
Then pin
yourusername/panther-core
instead.Option 2: Check Contri…