ci: adjust auto label

This commit is contained in:
Aiden Cline
2025-11-05 09:36:38 -06:00
parent 2db76fc6dd
commit 03f7f18260

View File

@@ -20,8 +20,8 @@ jobs:
const title = issue.title; const title = issue.title;
const description = issue.body || ''; const description = issue.body || '';
// Check for web/desktop keywords // Check for "opencode web" or desktop keywords
const webPattern = /\b(web|desktop)\b/i; const webPattern = /(opencode web|\bdesktop\b)/i;
const isWebRelated = webPattern.test(title) || webPattern.test(description); const isWebRelated = webPattern.test(title) || webPattern.test(description);
// Check for version patterns like v1.0.x or 1.0.x // Check for version patterns like v1.0.x or 1.0.x