This is an automated email from the ASF dual-hosted git repository.

shahar1 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 c217e9a577f Fix zimor unsound-ternary (#69026)
c217e9a577f is described below

commit c217e9a577fee7fedca8048b5d0c75a43305efa8
Author: Wei Lee <[email protected]>
AuthorDate: Fri Jun 26 23:23:38 2026 +0800

    Fix zimor unsound-ternary (#69026)
---
 .github/workflows/publish-docs-to-s3.yml | 2 +-
 .github/workflows/run-unit-tests.yml     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/publish-docs-to-s3.yml 
b/.github/workflows/publish-docs-to-s3.yml
index cebcdafac87..fdd6ea6b1be 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -88,7 +88,7 @@ jobs:
       AIRFLOW_VERSION: ${{ inputs.airflow-version || '' }}
       APPLY_COMMITS: ${{ inputs.apply-commits || '' }}
     outputs:
-      include-docs: ${{ inputs.include-docs == 'all' && '' || 
inputs.include-docs }}
+      include-docs: ${{ case(inputs.include-docs == 'all', '', 
inputs.include-docs) }}
       destination-location: ${{ steps.parameters.outputs.destination-location 
}}
       destination: ${{ steps.parameters.outputs.destination }}
       extra-build-options: ${{ steps.parameters.outputs.extra-build-options }}
diff --git a/.github/workflows/run-unit-tests.yml 
b/.github/workflows/run-unit-tests.yml
index 9417049bd5f..b963fc9e1cc 100644
--- a/.github/workflows/run-unit-tests.yml
+++ b/.github/workflows/run-unit-tests.yml
@@ -136,8 +136,8 @@ jobs:
     timeout-minutes: 65
     # yamllint disable rule:line-length
     name: "\
-      ${{ inputs.test-scope == 'All' && '' || inputs.test-scope == 
'Quarantined' && 'Qrnt' || inputs.test-scope }}\
-      ${{ inputs.test-scope == 'All' && '' || '-' }}\
+      ${{ case(inputs.test-scope == 'Quarantined', 'Qrnt', inputs.test-scope 
== 'All', '', inputs.test-scope) }}\
+      ${{ case(inputs.test-scope == 'All', '', '-') }}\
       ${{ inputs.test-group == 'providers' && 'prov' || inputs.test-group}}:\
       ${{ inputs.test-name }}${{ inputs.test-name-separator }}${{ 
matrix.backend-version }}:\
       ${{ matrix.python-version}}:${{ matrix.test-types.description }}"

Reply via email to