This commit is contained in:
Justin M. Keyes
2026-04-20 07:09:37 -04:00
committed by GitHub
parent 01861c2f95
commit 2b52acfb8a
10 changed files with 42 additions and 16 deletions

View File

@@ -86,6 +86,10 @@ tui:
- changed-files:
- any-glob-to-any-file: [ src/nvim/tui/tui.* ]
ui2:
- changed-files:
- any-glob-to-any-file: [ "runtime/lua/vim/_core/ui2*" ]
ux-visibility:
- changed-files:
- any-glob-to-any-file: [ "**/health.lua" ]

View File

@@ -17,7 +17,7 @@ jobs:
script: |
const title = context.payload.issue.title;
const titleSplit = title.split(/\b/).map(e => e.toLowerCase());
const keywords = ['api', 'treesitter', 'ui', 'lsp'];
const keywords = ['api', 'treesitter', 'ui', 'ui2', 'lsp'];
var match = new Set();
for (const keyword of keywords) {
if (titleSplit.includes(keyword)) {