patchrelay 0.35.9 → 0.35.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.35.9",
4
- "commit": "26b4d319fde3",
5
- "builtAt": "2026-04-03T23:53:54.564Z"
3
+ "version": "0.35.10",
4
+ "commit": "3146dd0e4b68",
5
+ "builtAt": "2026-04-04T00:02:17.420Z"
6
6
  }
@@ -77,9 +77,9 @@ export class IdleIssueReconciler {
77
77
  await this.routeFailedIssue(issue);
78
78
  continue;
79
79
  }
80
- // Probe GitHub for stale pr_open issues: detect missed reviews,
81
- // merge conflicts, and other state that webhooks may have missed.
82
- if (issue.factoryState === "pr_open") {
80
+ // Probe GitHub for idle issues with PRs: detect missed reviews,
81
+ // merge conflicts, and orphaned repair states.
82
+ if (issue.prNumber) {
83
83
  await this.reconcileFromGitHub(issue);
84
84
  }
85
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.35.9",
3
+ "version": "0.35.10",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {