ci-manager 0.5.2

Parse GitHub/GitLab workflows and do stuff like create issues
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::process::ExitCode;

#[tokio::main]
async fn main() -> ExitCode {
    if let Err(e) = ci_manager::run().await {
        eprintln!("Error: {e}");
        ExitCode::FAILURE
    } else {
        ExitCode::SUCCESS
    }
}