From 90586a4c461cde86b8a0e08f0770894e7cf30862 Mon Sep 17 00:00:00 2001 From: MinerSebas Date: Fri, 6 Aug 2021 22:00:16 +0000 Subject: [PATCH] Add "ci" job to the bors.toml (#2612) # Objective - #2551 revamped our CI setup which included running clippy and rustfmt in another Job. - This new Job wasn't added to the bors.toml, which means that PRs would be accepted that didn't run them. ## Solution - Add the "ci" job to the bors.toml --- .github/bors.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/bors.toml b/.github/bors.toml index ab84c8e3e133b..13febb3bedd92 100644 --- a/.github/bors.toml +++ b/.github/bors.toml @@ -12,6 +12,7 @@ status = [ "check-doc", "check-missing-examples-in-docs", "check-unused-dependencies", + "ci", ] use_squash_merge = true