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

dongjoon pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.4 by this push:
     new d4a94c283c66 [SPARK-48116][INFRA][FOLLOWUP] Fix `if` statement to 
check repository
d4a94c283c66 is described below

commit d4a94c283c66c20be8a3ba67b75b960ba3c29d6b
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Fri May 3 21:25:41 2024 -0700

    [SPARK-48116][INFRA][FOLLOWUP] Fix `if` statement to check repository
    
    (cherry picked from commit 81775a083f2339a76f3d1af472baf58e6fdf47d2)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .github/workflows/build_and_test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index 825ad064d078..35c1328256c2 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -88,7 +88,7 @@ jobs:
             tpcds=`./dev/is-changed.py -m sql`
             docker=`./dev/is-changed.py -m docker-integration-tests`
           fi
-          if [ "${{ github.repository != 'apache/spark' }}" ]; then
+          if [[ "${{ github.repository }}" != 'apache/spark' ]]; then
             pandas=$pyspark
           else
             pandas=false


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to