mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
Fixes a JSONDecodeError ('Unterminated string') in the auto-close
duplicate-issue workflow. gh api --paginate emits pages as concatenated
JSON arrays with no separators, so the previous line-based parsing broke
whenever an issue body contained an unescaped line-separator character
(U+2028, form feed, etc.) that str.splitlines treats as a newline.
Use gh api --paginate --slurp to collect pages into a single JSON array
and parse it in one json.loads call, then flatten and drop PRs.
|
||
|---|---|---|
| .. | ||
| _agent_shin_actions.py | ||
| agent_shin_shared.py | ||
| close_duplicate_issues.py | ||
| close_low_quality_prs.py | ||
| scan_keywords.py | ||
| test_close_duplicate_issues.py | ||
| triage-requirements.txt | ||
| triage_rollout_heads_up.py | ||
| triage_with_llm.py | ||
| uv_sync_with_retries.sh | ||