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

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


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

commit 4442f59ebbec4b10e7b3eae36c6fab96baa74f6f
Author: William Hyun <[email protected]>
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.
---
 .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 05bdfbd9d..e3f0e9c32 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:
     - main
   pull_request:
+    paths-ignore:
+    - 'docker'
+    - 'site/**'
     branches:
     - main
 

Reply via email to