Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save k0pernikus/7dc2132b9ccf972b1d4688d8290f2f31 to your computer and use it in GitHub Desktop.

Select an option

Save k0pernikus/7dc2132b9ccf972b1d4688d8290f2f31 to your computer and use it in GitHub Desktop.
github ghost notifcation removal
Source: https://github.com/orgs/community/discussions/6874#discussioncomment-14734100
# Windows Powershell
gh api /notifications -X GET | ConvertFrom-Json | ForEach-Object { gh api "/notifications/threads/$($_.id)" -X PATCH }
# Linux
gh api /notifications -X GET | jq -r '.[].id' | xargs -I {} gh api /notifications/threads/{} -X PATCH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment