diff options
| author | Aiden Cline <[email protected]> | 2025-11-05 09:36:38 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-11-05 09:36:38 -0600 |
| commit | 03f7f182605d178aa6e3b3533d76eb0a6361940f (patch) | |
| tree | 40581a3376bba06bf403c7250868a5f8b8f5288a /.github/workflows | |
| parent | 2db76fc6dd03b58e372675275dd6d48663c593c5 (diff) | |
| download | opencode-03f7f182605d178aa6e3b3533d76eb0a6361940f.tar.gz opencode-03f7f182605d178aa6e3b3533d76eb0a6361940f.zip | |
ci: adjust auto label
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/auto-label-tui.yml | 4 |
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 |
