Unable to Clear Notification from Deleted Repository #176333
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.
-
| Hey there! 👋 Thanks for posting in the GitHub Community, @snowyu ! We're happy you're here. You are more likely to get a useful response if you are posting in the applicable category. The Accessibility category is a place for our community to discuss and provide feedback on the digital accessibility of GitHub products. Digital accessibility means that GitHub tools, and technologies, are designed and developed so that people with disabilities can use them. I've gone ahead and moved this to the correct category for you,  | 
Beta Was this translation helpful? Give feedback.
-
| Hi @snowyu, 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
GitHub Feature Area
Notifications
Body
Hello GitHub Support Team,
I am experiencing an issue with notifications on my GitHub account. I was mentioned (@) in several repositories, which generated notifications. However, these repositories have since been deleted, and I am now unable to access, read, or unsubscribe from the related notifications. As a result, the notification indicator (red dot) in the top-right corner of my dashboard remains visible, even after I have marked all notifications as read.
After investigating, I believe the issue is caused by the following deleted repositories:
I have tried marking all notifications as read and checking all notification tabs (“All”, “Participating”, “Subscribed”), but the persistent notifications from these deleted repositories cannot be removed.
Could you please help me clear these notifications or otherwise resolve this issue? If you need additional information, such as screenshots or further details, I am happy to provide them.
Thank you very much for your assistance.
Beta Was this translation helpful? Give feedback.
All reactions