diff --git a/bors.toml b/bors.toml deleted file mode 100644 index 1f660303032eb..0000000000000 --- a/bors.toml +++ /dev/null @@ -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 diff --git a/crates/sourcegen/src/lib.rs b/crates/sourcegen/src/lib.rs index 719b35b630320..d991846c7f6d5 100644 --- a/crates/sourcegen/src/lib.rs +++ b/crates/sourcegen/src/lib.rs @@ -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 }