Auto merge of #12694 - hi-rustin:rustin-patch-bors, r=jonas-schievink

Remove useless bors.toml

It seems we do not use bors-ng anymore. So maybe this is useless.
This commit is contained in:
bors 2022-07-05 13:51:36 +00:00
commit fee5555cfa
2 changed files with 1 additions and 10 deletions

View File

@ -1,9 +0,0 @@
status = [
"Rust (ubuntu-latest)",
"Rust (windows-latest)",
"Rust (macos-latest)",
"TypeScript (ubuntu-latest)",
"TypeScript (windows-latest)",
]
delete_merged_branches = true
timeout_sec = 1200 # 20 min

View File

@ -196,6 +196,6 @@ fn normalize_newlines(s: &str) -> String {
pub fn project_root() -> PathBuf {
let dir = env!("CARGO_MANIFEST_DIR");
let res = PathBuf::from(dir).parent().unwrap().parent().unwrap().to_owned();
assert!(res.join("bors.toml").exists());
assert!(res.join("triagebot.toml").exists());
res
}