From ac09b0a13a1b64f5fa01c258fe45d79fe5e01cdc Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Tue, 28 Apr 2026 15:54:37 -0300 Subject: [PATCH] ci(e2e): run partition check parallel to test jobs e2e-partition-check takes ~10m and was gating all e2e partition jobs via needs:. Drift still fails the workflow via the separate job, so gating buys nothing. Drop it from the e2e job's needs: list so test partitions start as soon as e2e-build finishes. --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ef14b408..d2bef5e9 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -96,7 +96,7 @@ jobs: e2e: name: E2E ${{ matrix.name }} - needs: [changes, e2e-build, e2e-partition-check] + needs: [changes, e2e-build] if: needs.changes.outputs.code == 'true' runs-on: ubuntu-latest strategy: