This is an automated email from the ASF dual-hosted git repository.
tirkarthi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 17e51009a73 Check for empty list of integration tests before
evaluation inside matrix that requires a value. (#43546)
17e51009a73 is described below
commit 17e51009a730ea5ea68b50d8c19cb9e5f04ee141
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Sat Nov 2 22:47:17 2024 +0530
Check for empty list of integration tests before evaluation inside matrix
that requires a value. (#43546)
---
.github/workflows/integration-tests.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/integration-tests.yml
b/.github/workflows/integration-tests.yml
index e831350f5b1..530d0f9fc56 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -59,6 +59,7 @@ on: # yamllint disable-line rule:truthy
jobs:
tests-integration:
timeout-minutes: 130
+ if: inputs.testable-integrations != '[]'
name: "Integration Tests: ${{ matrix.integration }}"
runs-on: ${{ fromJSON(inputs.runs-on-as-json-public) }}
strategy: