From 8f0a06adb8e254ff143f7319fa9897c980bb9278 Mon Sep 17 00:00:00 2001 From: chrisbloe Date: Mon, 9 Feb 2026 10:47:49 +0000 Subject: [PATCH] [PRM-694] Add dependency on spine-exporter for transfer-classifier deployment --- .github/workflows/automated-deploy-services-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-deploy-services-dev.yml b/.github/workflows/automated-deploy-services-dev.yml index 798927b..eafb9fe 100644 --- a/.github/workflows/automated-deploy-services-dev.yml +++ b/.github/workflows/automated-deploy-services-dev.yml @@ -82,8 +82,8 @@ jobs: secrets: inherit transfer-classifier: - needs: get-changed-files - if: contains(needs.get-changed-files.outputs.changed, 'services/transfer-classifier/') || contains(needs.get-changed-files.outputs.changed, '.github/') + needs: [get-changed-files, spine-exporter] + if: always() && (contains(needs.get-changed-files.outputs.changed, 'services/transfer-classifier/') || contains(needs.get-changed-files.outputs.changed, '.github/')) && (needs.spine-exporter.result == 'success' || needs.spine-exporter.result == 'skipped') uses: ./.github/workflows/deploy-service-dev.yml with: is_deployment: ${{ github.ref == 'refs/heads/main' }}