From 83fb2e3faf76a9cffa5763ee68c5b17c2f3746d6 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 19 Jul 2022 23:28:13 +0200 Subject: [PATCH] Add Passed job to CI This will be the only job required to succeed to merge a pr. --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67fca101..6d7e46bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,3 +132,17 @@ jobs: run: cargo install --debug cargo-hack - name: Check all targets run: make check_all_targets + # Single job required to merge the pr. + Passed: + runs-on: ubuntu-latest + needs: + - Test + - MinimalVersions + - MSRV + - Nightly + - Clippy + - Docs + - Rustfmt + - CheckTargets + steps: + - run: exit 0