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

chengpan 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 36927551c [KYUUBI #4632] [CI] Add rule for labeler to tag `module:ui`
36927551c is described below

commit 36927551c19535422d4201b957c863881833a539
Author: zwangsheng <[email protected]>
AuthorDate: Thu Mar 30 19:48:15 2023 +0800

    [KYUUBI #4632] [CI] Add rule for labeler to tag `module:ui`
    
    ### _Why are the changes needed?_
    
    Current Labeler mis-tags `module:server` to changes about web-ui.
    
    We should give `module:ui` tag to ui-related PR.
    
    ### _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
    
    - [ ] [Run 
test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests)
 locally before make a pull request
    
    Closes #4632 from zwangsheng/ci/labeler_tag_ui.
    
    Closes #4632
    
    33e379d5e [zwangsheng] to low case
    801fdc95a [zwangsheng] Add rule fot labeler tag UI
    
    Authored-by: zwangsheng <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 .github/labeler.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/labeler.yml b/.github/labeler.yml
index bbc64ed66..ecec12532 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -102,7 +102,8 @@
 
 "module:server":
   - "bin/kyuubi"
-  - "kyuubi-server/**/*"
+  - "kyuubi-server/src/**/*"
+  - "kyuubi-server/pom.xml"
   - "extension/server/kyuubi-server-plugin/**/*"
 
 "module:spark":
@@ -121,3 +122,6 @@
 
 "module:authz":
   - "extensions/spark/kyuubi-spark-authz/**/*"
+
+"module:ui":
+  - "kyuubi-server/web-ui/**/*"

Reply via email to