diff options
| author | Aiden Cline <[email protected]> | 2025-11-01 20:23:10 -0500 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-11-01 20:23:10 -0500 |
| commit | 89492b30026e9b635b4b7e57877cbe7c8821b8b7 (patch) | |
| tree | c3fea83f7c2dd19f01c25ad3e8de69d1f25b5c43 | |
| parent | 2663415d4753a407b51999e13afe5be97c72d46e (diff) | |
| download | opencode-89492b30026e9b635b4b7e57877cbe7c8821b8b7.tar.gz opencode-89492b30026e9b635b4b7e57877cbe7c8821b8b7.zip | |
ci: fix regex
| -rw-r--r-- | .github/workflows/auto-label-tui.yml | 2 |
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({ |
