-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathgit.rs
30 lines (29 loc) · 773 Bytes
/
git.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use hubcaps::{Credentials, Github};
use std::env;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
pretty_env_logger::init();
let token = env::var("GITHUB_TOKEN")?;
let github = Github::new(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::Token(token),
)?;
if let Some(file) = github
.repo("softprops", "hubcaps")
.git()
.tree("master", true)
.await?
.tree
.iter()
.find(|file| file.path == "README.md")
{
let blob = github
.repo("softprops", "hubcaps")
.git()
.blob(file.sha.clone())
.await?;
println!("readme {:#?}", blob);
}
Ok(())
}