summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2023-11-11 17:04:31 +0900
committerGitHub <noreply@github.com>2023-11-11 09:04:31 +0100
commitcb5e7a2026d36b4ccaad82717a1ad26fa0fc40f3 (patch)
tree3a8bb87295852f73bceef69e467cc3217789f7dd /.github
parent8f0fe20ff1a13b468fdfaf85c434475f75c7a615 (diff)
CI: labeler.yml: Add some more component detection rules (#13511)
Add rules for `installer`, `platform-mac`, `platform-windows`, `xxd`. Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to '.github')
-rw-r--r--.github/labeler.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 8764d96262..d75ed4eb56 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -50,6 +50,46 @@ if_tcl:
- any: ['src/proto/if_tcl.pro']
- any: ['runtime/doc/if_tcl.txt']
+installer:
+- any: ['nsis/**']
+- any: ['src/dosinst.*']
+- any: ['src/uninstall.c']
+
+platform-mac:
+- any: ['src/INSTALLmac.txt']
+- any: ['src/os_mac*']
+- any: ['src/proto/os_mac*']
+
+platform-windows:
+- any: ['nsis/**']
+- any: ['src/*.bat']
+- any: ['src/*.bmp']
+- any: ['src/*.ico']
+- any: ['src/GvimExt/*']
+- any: ['src/INSTALLpc.txt']
+- any: ['src/Make_cyg*.mak']
+- any: ['src/Make_ming.mak']
+- any: ['src/Make_mvc.mak']
+- any: ['src/dosinst.*']
+- any: ['src/gui_dwrite.*']
+- any: ['src/gui_w32*']
+- any: ['src/if_ole.*']
+- any: ['src/iid_ole.c']
+- any: ['src/os_mswin*']
+- any: ['src/os_w32*']
+- any: ['src/os_win32.*']
+- any: ['src/proto/gui_w32.pro']
+- any: ['src/proto/os_mswin.pro']
+- any: ['src/proto/os_win32.pro']
+- any: ['src/proto/winclip.pro']
+- any: ['src/uninstall.c']
+- any: ['src/vim.manifest']
+- any: ['src/vim.rc']
+- any: ['src/vimrun.c']
+- any: ['src/winclip.c']
+- any: ['src/xpm/**']
+- any: ['src/xpm_w32.*']
+
runtime:
- any: ['runtime/ftplugin']
- any: ['runtime/syntax']
@@ -61,3 +101,6 @@ termdebug: runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
plugin-netrw:
- any: ['runtime/plugin/netrwPlugin.vim']
- any: ['runtime/autoload/netrw*']
+
+xxd:
+- any: ['src/xxd/*']