This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 73033a06fb81a19a16a6e2a32b13c1c9743c6160 Author: Stephen Mallette <[email protected]> AuthorDate: Wed Jul 15 12:31:55 2026 -0400 Stop dev-list URL extraction at bracket so linked threads aren't mangled Assisted-by: Claude Code:claude-opus-4-8 --- .skills/tinker-review/scripts/discovery/discussions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.skills/tinker-review/scripts/discovery/discussions.js b/.skills/tinker-review/scripts/discovery/discussions.js index 36b55af632..eafa49263b 100644 --- a/.skills/tinker-review/scripts/discovery/discussions.js +++ b/.skills/tinker-review/scripts/discovery/discussions.js @@ -24,7 +24,7 @@ import { join, basename } from "node:path"; const JIRA_BASE = "https://issues.apache.org/jira"; const DEV_LIST_API = "https://lists.apache.org/api/stats.lua"; const TINKERPOP_JIRA_PATTERN = /TINKERPOP-(\d+)/g; -const DEV_LIST_LINK_PATTERN = /https?:\/\/lists\.apache\.org\/[^\s)\]>"]*/g; +const DEV_LIST_LINK_PATTERN = /https?:\/\/lists\.apache\.org\/[^\s)\]>"[]*/g; const PROPOSAL_DIR = "docs/src/dev/future"; function httpGet(url) {
