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.
This commit is contained in:
mkorwel
2025-10-23 22:26:52 -07:00
parent 3e3d71297a
commit 0c21f374f3
+1 -1
View File
@@ -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 }}'