Notifications aggregate events from all extensions into a single feed, sorted by timestamp (descending). Read state is tracked per-notification in core_notification_reads.
Where the notification data lives:
All types exclude self-authored actions.
| Source | Type | Scope | Trigger |
|---|---|---|---|
| Core | mention | Any | Your email is @-mentioned in a commit message |
| Core | edit | Any | Someone other than you authored an edit (or retraction) of an item whose canonical was authored by you. Surfaces across all extensions — issues, PRs, posts, releases, memos. |
| Social | comment | Workspace + Followed | Someone comments on your post or a thread you participated in |
| Social | repost | Workspace + Followed | Someone reposts your post or a post in a thread you participated in |
| Social | quote | Workspace + Followed | Someone quotes your post or a post in a thread you participated in |
| Social | follow | Workspace | Someone follows your repository |
| PM | issue-assigned | Any | An issue is assigned to your email |
| PM | issue-closed | Any | An issue assigned to you is closed by someone else |
| PM | issue-reopened | Any | An issue assigned to you is reopened by someone else |
| Review | fork-pr | Forks | A non-draft PR is opened on a registered fork targeting your repo |
| Review | review-requested | Any | You are added as a reviewer on an open, non-draft PR |
| Review | feedback | Workspace + Any | Someone leaves feedback on a PR in your workspace or a PR you authored |
| Review | approved | Workspace + Any | Someone approves a PR in your workspace or a PR you authored |
| Review | changes-requested | Workspace + Any | Someone requests changes on a PR in your workspace or a PR you authored |
| Review | pr-merged | Any | A PR you authored is merged by someone else |
| Review | pr-closed | Any | A PR you authored is closed by someone else |
| Review | pr-ready | Forks | A draft PR on a registered fork is marked ready for review |
| Review | head-advanced | Workspace + Forks | An open PR's head branch advanced on its remote past the stored head-tip (run pr update to refresh) |
| Review | base-advanced | Workspace + Forks | An open PR's base branch advanced on its remote past the stored base-tip |
| Review | head-deleted | Workspace + Forks | An open PR's head branch no longer exists on its remote |
| Review | base-deleted | Workspace + Forks | An open PR's base branch no longer exists on its remote |
| Release | new-release | Followed | A repo in your lists publishes a release |
| gitmsg-divergence | branch-diverged | Workspace | A local gitmsg/<ext> branch has unpushed commits and diverges from origin (gitsocial push would be rejected; run rebase) |
The four *-advanced / *-deleted notifications are computed from
review_branch_observations (refreshed after each gitsocial fetch) compared
against the PR's stored tips. They self-clear once the PR catches up — no
explicit "mark as read" needed. Audience is the PR author and listed
reviewers.
The branch-diverged notification is computed on each poll from
git.ValidatePushPreconditions and self-clears once the rebase + push
lands.