From d6efd6736e11b01f4f6707109f1d5eb8eed6e6e4 Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Mon, 4 Mar 2024 15:02:44 +0100 Subject: [PATCH] ci: Drop all green job Drop the all green job which essentially duplicates functionality provided by GitHub Actions already. Signed-off-by: Felix Matouschek --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d76ed7..46d0ccf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,20 +125,3 @@ jobs: "kubevirt_vm_info", "inventory_kubevirt" ] - - all_green: - runs-on: ubuntu-latest - if: ${{ always() }} - needs: - - linter - - sanity - - unit-source - - integration - steps: - - run: >- - python -c "assert set([ - '${{ needs.linter.result }}', - '${{ needs.sanity.result }}', - '${{ needs.unit-source.result }}', - '${{ needs.integration.result }}' - ]) == {'success'}"