You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2022/07/08 06:09:39 UTC

[orc] branch branch-1.8 updated: ORC-1171: Skip build and test on docker and site updates (#1115)

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

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


The following commit(s) were added to refs/heads/branch-1.8 by this push:
     new 70845cbac ORC-1171: Skip build and test on docker and site updates (#1115)
70845cbac is described below

commit 70845cbac95a8a8a94aa3f1a07b24f9db1906176
Author: William Hyun <wi...@apache.org>
AuthorDate: Sat May 14 16:25:43 2022 -0700

    ORC-1171: Skip build and test on docker and site updates (#1115)
    
    ### What changes were proposed in this pull request?
    This PR aims to skip build and test on docker and site updates.
    
    ### Why are the changes needed?
    To save community resources from running tests on irrelevant changes.
    
    ### How was this patch tested?
    Manually verify after merging.
    
    (cherry picked from commit 4442f59ebbec4b10e7b3eae36c6fab96baa74f6f)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .github/workflows/build_and_test.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 3ca1e6514..57f99a96d 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -2,9 +2,15 @@ name: Build and test
 
 on:
   push:
+    paths-ignore:
+    - 'docker'
+    - 'site/**'
     branches:
     - branch-1.8
   pull_request:
+    paths-ignore:
+    - 'docker'
+    - 'site/**'
     branches:
     - branch-1.8