ralph-hero-mcp-server 2.5.70 → 2.5.71

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.
@@ -35,6 +35,8 @@ function toHygieneItem(item, now) {
35
35
  export function findArchiveCandidates(items, now, archiveDays) {
36
36
  return items
37
37
  .filter((item) => {
38
+ if (item.subIssueCount > 0)
39
+ return false;
38
40
  const ws = item.workflowState;
39
41
  if (!ws || !TERMINAL_STATES.includes(ws))
40
42
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-hero-mcp-server",
3
- "version": "2.5.70",
3
+ "version": "2.5.71",
4
4
  "description": "MCP server for GitHub Projects V2 - Ralph workflow automation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",