The check-duplicate workflow's auto-close step failed with:
json.decoder.JSONDecodeError: Unterminated string starting at:
line 1 column 2856598
`gh api --paginate` without --jq concatenates each page's response as a
pretty-printed JSON array spanning many lines; splitting that on newlines
and feeding individual lines to json.loads cannot work. Pass --jq '.[]'
so each issue is emitted as a single line of JSON, which the line-by-line
parser handles correctly.
Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com>
Add a Python script that detects duplicate issues using title similarity
(difflib.SequenceMatcher) and closes them via the gh CLI. Two-tier system:
- 0.6 threshold: informational comment via existing wow-actions step
- 0.85 threshold: auto-close with comment, label, and not_planned reason
Includes a workflow_dispatch workflow for one-time batch scans and
integrates auto-close into the existing check_duplicate_issues workflow
for newly opened issues.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add auto issue labelling for llm_translation
* Add logging
* make the formatting better
* make the formatting better
* make the formatting better
* make the formatting better