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

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


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

commit 81775a083f2339a76f3d1af472baf58e6fdf47d2
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
---
 .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 679c51bb0941..051e8c98908c 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -82,7 +82,7 @@ jobs:
           pyspark=true; sparkr=true; tpcds=true; docker=true;
           pyspark_modules=`cd dev && python -c "import 
sparktestsupport.modules as m; print(','.join(m.name for m in m.all_modules if 
m.name.startswith('pyspark')))"`
           pyspark=`./dev/is-changed.py -m $pyspark_modules`
-          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