diff --git a/internal/gh/enrichments.go b/internal/gh/enrichments.go index e5c48b2..40b399d 100644 --- a/internal/gh/enrichments.go +++ b/internal/gh/enrichments.go @@ -8,6 +8,10 @@ import ( ) func (c *Client) enrichNotification(n *notifications.Notification) error { + if n.Meta.Done { + return nil + } + extra := struct { User notifications.User `json:"user"` State string `json:"state"`