diff options
| author | Aiden Cline <[email protected]> | 2025-11-06 11:46:42 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-11-06 11:46:42 -0600 |
| commit | d8bcf1f5f3923f6130cd8be02b67a565da1dfa19 (patch) | |
| tree | af452157f9f041df11f09d3defe2753578914c77 /.github | |
| parent | 67f3c934fec7e118de90fe845c262a4d75ce03ba (diff) | |
| download | opencode-d8bcf1f5f3923f6130cd8be02b67a565da1dfa19.tar.gz opencode-d8bcf1f5f3923f6130cd8be02b67a565da1dfa19.zip | |
ci: update auto label
Diffstat (limited to '.github')
| -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 73cccf928..8f2d80b59 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 |
