Persistent notifications for non-existent repository "ycombinaattor/-co" #178186
-
Beta Was this translation helpful? Give feedback.
Replies: 3 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.



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