summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-05 09:36:38 -0600
committerAiden Cline <[email protected]>2025-11-05 09:36:38 -0600
commit03f7f182605d178aa6e3b3533d76eb0a6361940f (patch)
tree40581a3376bba06bf403c7250868a5f8b8f5288a
parent2db76fc6dd03b58e372675275dd6d48663c593c5 (diff)
downloadopencode-03f7f182605d178aa6e3b3533d76eb0a6361940f.tar.gz
opencode-03f7f182605d178aa6e3b3533d76eb0a6361940f.zip
ci: adjust auto label
-rw-r--r--.github/workflows/auto-label-tui.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto-label-tui.yml b/.github/workflows/auto-label-tui.yml
index 834562e17..73cccf928 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 web/desktop keywords
- const webPattern = /\b(web|desktop)\b/i;
+ // Check for "opencode web" or desktop keywords
+ const webPattern = /(opencode web|\bdesktop\b)/i;
const isWebRelated = webPattern.test(title) || webPattern.test(description);
// Check for version patterns like v1.0.x or 1.0.x