|
1 | 1 | # list of labels and minimatch globs to match to apply the label.
|
2 | 2 |
|
3 | 3 | CI:
|
4 |
| -- any: ['.cirrus.yml'] |
5 |
| -- any: ['.github/dependabot.yml'] |
6 |
| -- any: ['.github/labeler.yml'] |
7 |
| -- any: ['.github/workflows/*'] |
8 |
| -- any: ['.appveyor.yml'] |
9 |
| -- any: ['.codecov.yml'] |
| 4 | + - all: |
| 5 | + - changed-files: |
| 6 | + - any-glob-to-any-file: |
| 7 | + - '.cirrus.yml' |
| 8 | + - '.github/dependabot.yml' |
| 9 | + - '.github/labeler.yml' |
| 10 | + - '.github/workflows/*' |
| 11 | + - '.appveyor.yml' |
| 12 | + - '.codecov.yml' |
10 | 13 |
|
11 | 14 | documentation:
|
12 |
| -- all: ['*/doc/*'] |
| 15 | + - all: |
| 16 | + - changed-files: |
| 17 | + - any-glob-to-all-files: |
| 18 | + - '*/doc/*' |
13 | 19 |
|
14 | 20 | translation:
|
15 |
| -- any: ['src/po/*.po'] |
| 21 | + - all: |
| 22 | + - changed-files: |
| 23 | + - any-glob-to-any-file: |
| 24 | + - 'src/po/*.po' |
16 | 25 |
|
17 | 26 | if_lua:
|
18 |
| -- any: ['src/if_lua.c'] |
19 |
| -- any: ['src/proto/if_lua.pro'] |
20 |
| -- any: ['runtime/doc/if_lua.txt'] |
| 27 | + - all: |
| 28 | + - changed-files: |
| 29 | + - any-glob-to-any-file: |
| 30 | + - 'src/if_lua.c' |
| 31 | + - 'src/proto/if_lua.pro' |
| 32 | + - 'runtime/doc/if_lua.txt' |
21 | 33 |
|
22 | 34 | if_mzscheme:
|
23 |
| -- any: ['src/if_mzsch.c'] |
24 |
| -- any: ['src/if_mzsch.h'] |
25 |
| -- any: ['src/proto/if_mzsch.pro'] |
26 |
| -- any: ['runtime/doc/if_mzsch.txt'] |
| 35 | + - all: |
| 36 | + - changed-files: |
| 37 | + - any-glob-to-any-file: |
| 38 | + - 'src/if_mzsch.c' |
| 39 | + - 'src/if_mzsch.h' |
| 40 | + - 'src/proto/if_mzsch.pro' |
| 41 | + - 'runtime/doc/if_mzsch.txt' |
27 | 42 |
|
28 | 43 | if_perl:
|
29 |
| -- any: ['src/if_perl.xs'] |
30 |
| -- any: ['src/if_perlsfio.c'] |
31 |
| -- any: ['src/proto/if_perl.pro'] |
32 |
| -- any: ['src/proto/if_perlsfio.pro'] |
33 |
| -- any: ['runtime/doc/if_perl.txt'] |
| 44 | + - all: |
| 45 | + - changed-files: |
| 46 | + - any-glob-to-any-file: |
| 47 | + - 'src/if_perl.xs' |
| 48 | + - 'src/if_perlsfio.c' |
| 49 | + - 'src/proto/if_perl.pro' |
| 50 | + - 'src/proto/if_perlsfio.pro' |
| 51 | + - 'runtime/doc/if_perl.txt' |
34 | 52 |
|
35 | 53 | if_python:
|
36 |
| -- any: ['src/if_py_both.h'] |
37 |
| -- any: ['runtime/doc/if_pyth.txt'] |
38 |
| -- any: ['src/if_python.c'] |
39 |
| -- any: ['src/if_python3.c'] |
40 |
| -- any: ['src/proto/if_python.pro'] |
41 |
| -- any: ['src/proto/if_python3.pro'] |
| 54 | + - all: |
| 55 | + - changed-files: |
| 56 | + - any-glob-to-any-file: |
| 57 | + - 'src/if_py_both.h' |
| 58 | + - 'runtime/doc/if_pyth.txt' |
| 59 | + - 'src/if_python.c' |
| 60 | + - 'src/if_python3.c' |
| 61 | + - 'src/proto/if_python.pro' |
| 62 | + - 'src/proto/if_python3.pro' |
42 | 63 |
|
43 | 64 | if_ruby:
|
44 |
| -- any: ['src/if_ruby.c'] |
45 |
| -- any: ['src/proto/if_ruby.pro'] |
46 |
| -- any: ['runtime/doc/if_ruby.txt'] |
| 65 | + - all: |
| 66 | + - changed-files: |
| 67 | + - any-glob-to-any-file: |
| 68 | + - 'src/if_ruby.c' |
| 69 | + - 'src/proto/if_ruby.pro' |
| 70 | + - 'runtime/doc/if_ruby.txt' |
47 | 71 |
|
48 | 72 | if_tcl:
|
49 |
| -- any: ['src/if_tcl.c'] |
50 |
| -- any: ['src/proto/if_tcl.pro'] |
51 |
| -- any: ['runtime/doc/if_tcl.txt'] |
| 73 | + - all: |
| 74 | + - changed-files: |
| 75 | + - any-glob-to-any-file: |
| 76 | + - 'src/if_tcl.c' |
| 77 | + - 'src/proto/if_tcl.pro' |
| 78 | + - 'runtime/doc/if_tcl.txt' |
52 | 79 |
|
53 | 80 | installer:
|
54 |
| -- any: ['nsis/**'] |
55 |
| -- any: ['src/dosinst.*'] |
56 |
| -- any: ['src/uninstall.c'] |
| 81 | + - all: |
| 82 | + - changed-files: |
| 83 | + - any-glob-to-any-file: |
| 84 | + - 'nsis/**' |
| 85 | + - 'src/dosinst.*' |
| 86 | + - 'src/uninstall.c' |
57 | 87 |
|
58 | 88 | platform-mac:
|
59 |
| -- any: ['src/INSTALLmac.txt'] |
60 |
| -- any: ['src/os_mac*'] |
61 |
| -- any: ['src/proto/os_mac*'] |
| 89 | + - all: |
| 90 | + - changed-files: |
| 91 | + - any-glob-to-any-file: |
| 92 | + - 'src/INSTALLmac.txt' |
| 93 | + - 'src/os_mac*' |
| 94 | + - 'src/proto/os_mac*' |
62 | 95 |
|
63 | 96 | platform-windows:
|
64 |
| -- any: ['nsis/**'] |
65 |
| -- any: ['src/*.bat'] |
66 |
| -- any: ['src/*.bmp'] |
67 |
| -- any: ['src/*.ico'] |
68 |
| -- any: ['src/GvimExt/*'] |
69 |
| -- any: ['src/INSTALLpc.txt'] |
70 |
| -- any: ['src/Make_cyg*.mak'] |
71 |
| -- any: ['src/Make_ming.mak'] |
72 |
| -- any: ['src/Make_mvc.mak'] |
73 |
| -- any: ['src/dosinst.*'] |
74 |
| -- any: ['src/gui_dwrite.*'] |
75 |
| -- any: ['src/gui_w32*'] |
76 |
| -- any: ['src/if_ole.*'] |
77 |
| -- any: ['src/iid_ole.c'] |
78 |
| -- any: ['src/os_mswin*'] |
79 |
| -- any: ['src/os_w32*'] |
80 |
| -- any: ['src/os_win32.*'] |
81 |
| -- any: ['src/proto/gui_w32.pro'] |
82 |
| -- any: ['src/proto/os_mswin.pro'] |
83 |
| -- any: ['src/proto/os_win32.pro'] |
84 |
| -- any: ['src/proto/winclip.pro'] |
85 |
| -- any: ['src/uninstall.c'] |
86 |
| -- any: ['src/vim.manifest'] |
87 |
| -- any: ['src/vim.rc'] |
88 |
| -- any: ['src/vimrun.c'] |
89 |
| -- any: ['src/winclip.c'] |
90 |
| -- any: ['src/xpm/**'] |
91 |
| -- any: ['src/xpm_w32.*'] |
| 97 | + - all: |
| 98 | + - changed-files: |
| 99 | + - any-glob-to-any-file: |
| 100 | + - 'nsis/**' |
| 101 | + - 'src/*.bat' |
| 102 | + - 'src/*.bmp' |
| 103 | + - 'src/*.ico' |
| 104 | + - 'src/GvimExt/*' |
| 105 | + - 'src/INSTALLpc.txt' |
| 106 | + - 'src/Make_cyg*.mak' |
| 107 | + - 'src/Make_ming.mak' |
| 108 | + - 'src/Make_mvc.mak' |
| 109 | + - 'src/dosinst.*' |
| 110 | + - 'src/gui_dwrite.*' |
| 111 | + - 'src/gui_w32*' |
| 112 | + - 'src/if_ole.*' |
| 113 | + - 'src/iid_ole.c' |
| 114 | + - 'src/os_mswin*' |
| 115 | + - 'src/os_w32*' |
| 116 | + - 'src/os_win32.*' |
| 117 | + - 'src/proto/gui_w32.pro' |
| 118 | + - 'src/proto/os_mswin.pro' |
| 119 | + - 'src/proto/os_win32.pro' |
| 120 | + - 'src/proto/winclip.pro' |
| 121 | + - 'src/uninstall.c' |
| 122 | + - 'src/vim.manifest' |
| 123 | + - 'src/vim.rc' |
| 124 | + - 'src/vimrun.c' |
| 125 | + - 'src/winclip.c' |
| 126 | + - 'src/xpm/**' |
| 127 | + - 'src/xpm_w32.*' |
92 | 128 |
|
93 | 129 | runtime:
|
94 |
| -- any: ['runtime/ftplugin'] |
95 |
| -- any: ['runtime/syntax'] |
96 |
| -- any: ['runtime/indent'] |
97 |
| -- any: ['runtime/pack/dist/opt/termdebug/plugin/termdebug.vim'] |
98 |
| - |
99 |
| -termdebug: runtime/pack/dist/opt/termdebug/plugin/termdebug.vim |
| 130 | + - all: |
| 131 | + - changed-files: |
| 132 | + - any-glob-to-any-file: |
| 133 | + - 'runtime/ftplugin' |
| 134 | + - 'runtime/syntax' |
| 135 | + - 'runtime/indent' |
| 136 | + - 'runtime/pack/dist/opt/termdebug/plugin/termdebug.vim' |
| 137 | + |
| 138 | +termdebug: |
| 139 | + - all: |
| 140 | + - changed-files: |
| 141 | + - any-glob-to-any-file: |
| 142 | + - 'runtime/pack/dist/opt/termdebug/plugin/termdebug.vim' |
100 | 143 |
|
101 | 144 | plugin-netrw:
|
102 |
| -- any: ['runtime/plugin/netrwPlugin.vim'] |
103 |
| -- any: ['runtime/autoload/netrw*'] |
| 145 | + - all: |
| 146 | + - changed-files: |
| 147 | + - any-glob-to-any-file: |
| 148 | + - 'runtime/plugin/netrwPlugin.vim' |
| 149 | + - 'runtime/autoload/netrw*' |
104 | 150 |
|
105 | 151 | xxd:
|
106 |
| -- any: ['src/xxd/*'] |
| 152 | + - all: |
| 153 | + - changed-files: |
| 154 | + - any-glob-to-any-file: |
| 155 | + - 'src/xxd/*' |
0 commit comments