I can't handle my notifications... #176873
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. ⭐ |
BetaWas this translation helpful?Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @purpleroc , 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|ycoommbinator)"; "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: |
BetaWas this translation helpful?Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Feature Area
Issues
Body
There is always a message reminder in my notifications, and it always keeps the red dot status. However, when I click on it, I can't see any notification and I can't handle it.
Guidelines
BetaWas this translation helpful?Give feedback.
All reactions