merge-ready 0.2.1

Show pull request merge blockers as concise prompt tokens
1
2
3
4
5
6
7
8
use super::super::error::RepositoryError;
use super::CiChecks;

pub trait CiChecksRepository {
    /// # Errors
    /// Returns `RepositoryError` if the CI checks cannot be fetched.
    fn fetch_checks(&self) -> Result<CiChecks, RepositoryError>;
}