summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-01 20:23:10 -0500
committerAiden Cline <[email protected]>2025-11-01 20:23:10 -0500
commit89492b30026e9b635b4b7e57877cbe7c8821b8b7 (patch)
treec3fea83f7c2dd19f01c25ad3e8de69d1f25b5c43 /.github/workflows
parent2663415d4753a407b51999e13afe5be97c72d46e (diff)
downloadopencode-89492b30026e9b635b4b7e57877cbe7c8821b8b7.tar.gz
opencode-89492b30026e9b635b4b7e57877cbe7c8821b8b7.zip
ci: fix regex
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/auto-label-tui.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/auto-label-tui.yml b/.github/workflows/auto-label-tui.yml
index 333b72dbc..2b5379b81 100644
--- a/.github/workflows/auto-label-tui.yml
+++ b/.github/workflows/auto-label-tui.yml
@@ -21,7 +21,7 @@ jobs:
const description = issue.body || '';
// Check for version patterns like v1.0.x or 1.0.x
- const versionPattern = /\b[v]?1\.0\.[x\d]\b/i;
+ const versionPattern = /[v]?1\.0\./i;
if (versionPattern.test(title) || versionPattern.test(description)) {
await github.rest.issues.addLabels({