fix: move sync health report to own row below each account (#311) (#322)

This commit was merged in pull request #322.
This commit is contained in:
Bot of Thomas Güttler
2026-05-28 06:53:11 +02:00
parent 47fc534a8d
commit c45775be92
3 changed files with 102 additions and 73 deletions
+5 -3
View File
@@ -912,9 +912,11 @@ def _run_loop() -> int:
if not m:
continue
issue_num = int(m.group(1))
labels = _get_issue_labels(issue_num)
if not labels:
# Issue is likely already closed — skip.
try:
issue_data = _tea_get(f"/repos/{REPO}/issues/{issue_num}")
except RuntimeError:
continue
if issue_data.get("state") != "open":
continue
pr_number = pr["number"]
print(f"Catch-up (merged PR): PR #{pr_number} for issue #{issue_num} was merged — closing.")