navi-notifier-github 0.1.7

GitHub source for navi: notifications polling + PR timeline diffing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! GitHub source for navi.
//!
//! Polls the Notifications API to learn which PRs have activity, then fetches each
//! PR's reviews/comments and diffs them (via `navi-notifier-forge`) against a
//! persisted snapshot to derive normalized events at a granularity
//! (reply-to-your-comment, re-review, dismissal) the raw notification `reason`
//! can't provide.

mod notification;
mod source;

pub use source::{GitHubSource, GitHubSourceConfig};