ci: remove ci-failure

bors-ng now consider skipped job as fail.
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c5bdfd7..a1d5506 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -86,7 +86,7 @@
       - uses: actions/checkout@v2
       - run: shellcheck **/*.sh
 
-  # These jobs don't actually test anything, but they're used to tell bors the
+  # This job doesn't actually test anything, but they're used to tell bors the
   # build completed, as there is no practical way to detect when a workflow is
   # successful listening to webhooks only.
   #
@@ -106,17 +106,3 @@
     steps:
       - name: Mark the job as a success
         run: exit 0
-  ci-failure:
-    name: ci
-    if: github.event_name == 'push' && !success()
-    needs:
-      - test
-      - build
-      - clippy
-      - rustfmt
-      - rustdoc
-      - shellcheck
-    runs-on: ubuntu-latest
-    steps:
-      - name: Mark the job as a failure
-        run: exit 1