Persistent notifications for non-existent repository "ycombinaattor/-co" #178186
-
Beta Was this translation helpful? Give feedback.
Replies: 5 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. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi @shelltea, You can use the GitHub CLI to mark the notifications as read: gh api notifications\?all=true | jq -r 'map(select(.unread) | .id)[]' | xargs -L1 sh -c 'gh api -X PATCH notifications/threads/$0'To remove them from the sidebar, I used: gh api notifications\?all=true | jq -r '.[] | select(.subject.title | test("(paradigm|Lido|gitcoin)"; "i")) | .id' \
| xargs -L1 -I{} gh api \
--method DELETE \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/notifications/threads/{}If you don’t have the CLI installed, you can add it via Homebrew: |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue with a similarly named spam repo that does not exist, This seems to have been part of a massive scheme to phish crypto from people: gbhackers article |
Beta Was this translation helpful? Give feedback.
-
|
Very bizarre, I also had this exact same broken repo show 1 notification. Thanks @DmitrySadovnikov for the fix. |
Beta Was this translation helpful? Give feedback.
-
|
Hey everyone, this was likely caused by notifications from spammy repositories and users not being correctly hidden. I'm very excited to share that we just shipped a major improvement to how these notifications are handled, so you should no longer be seeing inaccurate notification counts for your repositories. You can check out our changelog for more details and feel free to leave any questions or feedback in this thread or in our community discussion post! |
Beta Was this translation helpful? Give feedback.



Hi @shelltea,
You can use the GitHub CLI to mark the notifications as read:
To remove them from the sidebar, I used:
If you don’t have the CLI installed, you can add it via Homebrew:
Github CLI Doc
Github API Doc