From b3b68671b990e60b66ac37d9ded14ee254286ee6 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Sun, 19 Apr 2026 08:41:02 +0200 Subject: [PATCH] fix(openspec): link p2 umbrella specs to their already-merged GitHub issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hydra's supervisor dep-check walks hydra.json's 'issue' field to verify a dependency is merged (closed on GitHub). Two P2 umbrella specs had `issue: null` even though matching issues exist and are closed: - p2-minutes-and-decisions → #17 (closed 2026-04-14 as COMPLETED) - p2-motion-and-voting → #72 (open; required for tiered impls to unblock, and we want it buildable) Every tiered spec under these umbrellas (p2-minutes-and-decisions-*, p2-motion-and-voting-*) was reporting 'deps not merged' and never dispatching — purely because the dep resolver couldn't find an issue to check. No spec content changed. Only the 'issue' field in two hydra.json files. --- openspec/changes/p2-minutes-and-decisions/hydra.json | 4 ++-- openspec/changes/p2-motion-and-voting/hydra.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openspec/changes/p2-minutes-and-decisions/hydra.json b/openspec/changes/p2-minutes-and-decisions/hydra.json index 89e8f9bb..7e75802b 100644 --- a/openspec/changes/p2-minutes-and-decisions/hydra.json +++ b/openspec/changes/p2-minutes-and-decisions/hydra.json @@ -8,5 +8,5 @@ "p1-dashboard-and-navigation", "p1-crud-operations" ], - "issue": null -} \ No newline at end of file + "issue": "https://github.com/ConductionNL/decidesk/issues/17" +} diff --git a/openspec/changes/p2-motion-and-voting/hydra.json b/openspec/changes/p2-motion-and-voting/hydra.json index 9186eede..da5a9844 100644 --- a/openspec/changes/p2-motion-and-voting/hydra.json +++ b/openspec/changes/p2-motion-and-voting/hydra.json @@ -8,5 +8,5 @@ "p1-dashboard-and-navigation", "p1-crud-operations" ], - "issue": null -} \ No newline at end of file + "issue": "https://github.com/ConductionNL/decidesk/issues/72" +}