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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9b6c84f0340f [SPARK-47124][R][INFRA] Skip scheduled SparkR on Windows 
in fork repositories by default
9b6c84f0340f is described below

commit 9b6c84f0340fcd2f47157c1c2e26e943ade99491
Author: Hyukjin Kwon <gurwls...@apache.org>
AuthorDate: Wed Feb 21 16:54:47 2024 -0800

    [SPARK-47124][R][INFRA] Skip scheduled SparkR on Windows in fork 
repositories by default
    
    ### What changes were proposed in this pull request?
    
    This PR proposes to skip scheduled SparkR on Windows in fork repositories 
by default
    
    ### Why are the changes needed?
    
    To be consistent with other scheduled jobs. We encourage the contributors 
to turn this GitHub Actions on by default in forked repositories so we better 
disable them by default.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, dev-only.
    
    ### How was this patch tested?
    
    Manually. Uses 
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idif
 to be consistent with other scheduled jobs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #45208 from HyukjinKwon/SPARK-47124.
    
    Authored-by: Hyukjin Kwon <gurwls...@apache.org>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .github/workflows/build_sparkr_window.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/build_sparkr_window.yml 
b/.github/workflows/build_sparkr_window.yml
index 4375b21be55e..a7a265965662 100644
--- a/.github/workflows/build_sparkr_window.yml
+++ b/.github/workflows/build_sparkr_window.yml
@@ -27,6 +27,7 @@ jobs:
     name: "Build module: sparkr"
     runs-on: windows-2019
     timeout-minutes: 300
+    if: github.repository == 'apache/spark'
     steps:
     - name: Download winutils Hadoop binary
       uses: actions/checkout@v4


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

Reply via email to