ci: Drop all green job

Drop the all green job which essentially duplicates functionality
provided by GitHub Actions already.

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
Felix Matouschek
2024-03-04 15:02:44 +01:00
parent c0e30db528
commit d6efd6736e

View File

@@ -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'}"