From 101e72a846ff789d31ae132f50869fd2b05f3af4 Mon Sep 17 00:00:00 2001 From: Ryan Cook Date: Fri, 10 Oct 2025 10:09:09 -0400 Subject: [PATCH] fix of needs lines Signed-off-by: Ryan Cook --- .github/workflows/components-build-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/components-build-deploy.yml b/.github/workflows/components-build-deploy.yml index 299a68572..91d811ad0 100644 --- a/.github/workflows/components-build-deploy.yml +++ b/.github/workflows/components-build-deploy.yml @@ -144,7 +144,7 @@ jobs: deploy-to-openshift: runs-on: ubuntu-latest - needs: [detect-changes, build-and-push] + needs: [detect-changes, build-and-push, patch-yaml] if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.detect-changes.outputs.frontend == 'true' || needs.detect-changes.outputs.backend == 'true' || needs.detect-changes.outputs.operator == 'true' || needs.detect-changes.outputs.claude-runner == 'true') strategy: matrix: @@ -197,7 +197,7 @@ jobs: rollout-changes: runs-on: ubuntu-latest - needs: [detect-changes, build-and-push] + needs: [detect-changes, build-and-push, patch-yaml, deploy-to-openshift] if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.detect-changes.outputs.frontend == 'true' || needs.detect-changes.outputs.backend == 'true' || needs.detect-changes.outputs.operator == 'true' || needs.detect-changes.outputs.claude-runner == 'true') steps: - name: Checkout code