about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bors.toml9
-rw-r--r--crates/sourcegen/src/lib.rs2
2 files changed, 1 insertions, 10 deletions
diff --git a/bors.toml b/bors.toml
deleted file mode 100644
index 1f660303032..00000000000
--- 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 719b35b6303..d991846c7f6 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
 }