buildkite-workflow 1.2.0

GitHub Alfred Workflow to quickly search and open buildkite pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::io;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error(transparent)]
    API(#[from] crate::buildkite_api::errors::Error),

    #[error(transparent)]
    SQLite(#[from] crate::database::errors::Error),

    #[error("failed to write alfred items->json {}", _0)]
    WriteItems(#[from] io::Error),
}