From 0c21f374f3d22df9161bff34f87bb027d4bdf1af Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 23 Oct 2025 22:26:52 -0700 Subject: [PATCH] fix(orchestrator): remove ci dependency from e2e workflow The e2e workflow in orchestrator.yml was incorrectly depending on the ci workflow. These are separate concerns and e2e should not depend on ci. This commit removes the ci dependency from the e2e workflow. --- .github/workflows/orchestrator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/orchestrator.yml b/.github/workflows/orchestrator.yml index fc7c26e1f6..3c2b073852 100644 --- a/.github/workflows/orchestrator.yml +++ b/.github/workflows/orchestrator.yml @@ -67,7 +67,7 @@ jobs: e2e: name: 'E2E Checks' - needs: ['build-and-publish', 'ci', 'get-vars'] + needs: ['build-and-publish', 'get-vars'] uses: './.github/workflows/e2e.yml' with: version: '${{ needs.build-and-publish.outputs.version }}'