Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 89492b3

Browse files
committed
ci: fix regex
1 parent 2663415 commit 89492b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/auto-label-tui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
const description = issue.body || '';
2222
2323
// Check for version patterns like v1.0.x or 1.0.x
24-
const versionPattern = /\b[v]?1\.0\.[x\d]\b/i;
24+
const versionPattern = /[v]?1\.0\./i;
2525
2626
if (versionPattern.test(title) || versionPattern.test(description)) {
2727
await github.rest.issues.addLabels({

0 commit comments

Comments
 (0)