diff --git a/.github/workflows/auto-label-tui.yml b/.github/workflows/auto-label-tui.yml index 73cccf92..8f2d80b5 100644 --- a/.github/workflows/auto-label-tui.yml +++ b/.github/workflows/auto-label-tui.yml @@ -20,8 +20,8 @@ jobs: const title = issue.title; const description = issue.body || ''; - // Check for "opencode web" or desktop keywords - const webPattern = /(opencode web|\bdesktop\b)/i; + // Check for "opencode web" keyword + const webPattern = /(opencode web)/i; const isWebRelated = webPattern.test(title) || webPattern.test(description); // Check for version patterns like v1.0.x or 1.0.x