You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by bo...@apache.org on 2023/02/14 02:49:10 UTC

[kyuubi] branch master updated: [KYUUBI #4312] [FOLLOWUP] Fix overmatched README pattern for markdown styling

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4de0a697a [KYUUBI #4312] [FOLLOWUP] Fix overmatched README pattern for markdown styling
4de0a697a is described below

commit 4de0a697ae700d5c6d6122f740437f38d66715dd
Author: liangbowen <li...@gf.com.cn>
AuthorDate: Tue Feb 14 10:48:59 2023 +0800

    [KYUUBI #4312] [FOLLOWUP] Fix overmatched README pattern for markdown styling
    
    ### _Why are the changes needed?_
    
    - fix the README files' over-matched pattern mentioned in https://github.com/apache/kyuubi/pull/4312/files#r1105223855
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4319 from bowenliang123/readme-match-pattern.
    
    Closes #4312
    
    3a8266e6 [liangbowen] update
    189695be [liangbowen] fix overmatching pattern for README file
    
    Authored-by: liangbowen <li...@gf.com.cn>
    Signed-off-by: liangbowen <li...@gf.com.cn>
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8bffc4f8b..644119ece 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2076,8 +2076,9 @@
                         </python>
                         <markdown>
                             <includes>
-                                <include>**/README.md</include>
                                 <include>docs/**/*.md</include>
+                                <include>*/README.md</include>
+                                <include>docker/playground/README.md</include>
                             </includes>
                             <flexmark>
                                 <version>${flexmark.version}</version>