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

dnskr pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.10 by this push:
     new 98026d488a [KYUUBI #7223] [CI] Skip running tests for documentation 
only changes
98026d488a is described below

commit 98026d488af32df3c41346173cdb12d6da27a2ef
Author: dnskr <[email protected]>
AuthorDate: Thu Oct 9 17:18:30 2025 +0200

    [KYUUBI #7223] [CI] Skip running tests for documentation only changes
    
    ### Why are the changes needed?
    
    The PR disables heavy CI tests for documentation-only changes as not needed 
to speed up PR creation and save resources.
    
    ### How was this patch tested?
    
    The PR was not tested and relies on the official documentation:
     - [If you define both branches/branches-ignore and paths/paths-ignore, the 
workflow will only run when both filters are 
satisfied.](https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#onpushpull_requestpull_request_targetpathspaths-ignore:~:text=the%20path%20again.-,If%20you%20define%20both%20branches/branches%2Dignore%20and%20paths/paths%2Dignore%2C%20the%20workflow%20will%20only%20run%20when%20both%20filters%20are%20satisfied.,-The%20paths%20and)
     - [Example: Excluding 
paths](https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#example-excluding-paths)
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No
    
    Closes #7223 from dnskr/skip-ci-tests-for-docs.
    
    Closes #7223
    
    2d1f435ce [dnskr] [CI] Skip running tests for documentation only changes
    
    Authored-by: dnskr <[email protected]>
    Signed-off-by: dnskr <[email protected]>
    (cherry picked from commit 6fb4c8737a4b446be886759b50d60dceb362d01c)
    Signed-off-by: dnskr <[email protected]>
---
 .github/workflows/master.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 10ab85dbd3..b3f0fa0320 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -22,10 +22,14 @@ on:
     branches:
       - master
       - branch-*
+    paths-ignore:
+      - 'docs/**'
   pull_request:
     branches:
       - master
       - branch-*
+    paths-ignore:
+      - 'docs/**'
 
 concurrency:
   group: test-${{ github.head_ref || github.run_id }}

Reply via email to