From 9177173221d21eaa0fbe4c50185408b7368b4da7 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Fri, 30 May 2025 17:21:34 +0200 Subject: [PATCH] ci: add condition for test-recordings job to ensure proper execution based on AWS runner status --- .github/workflows/backend-integration-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backend-integration-test.yaml b/.github/workflows/backend-integration-test.yaml index dfd7acd..e6d0e27 100644 --- a/.github/workflows/backend-integration-test.yaml +++ b/.github/workflows/backend-integration-test.yaml @@ -68,6 +68,7 @@ jobs: test-recordings: name: Recordings API Tests needs: start-aws-runner + if: ${{ always() && (needs.start-aws-runner.result == 'success' || needs.start-aws-runner.result == 'skipped') }} runs-on: ${{ needs.start-aws-runner.outputs.label || 'ov-actions-runner' }} timeout-minutes: 30 steps: