From cbe80279d6d684b430513c23c0c600d4d26b7fb8 Mon Sep 17 00:00:00 2001 From: Danil Silantyev Date: Sun, 26 Jul 2026 18:06:27 +0500 Subject: [PATCH] fix(anchor): declare git-submodule consumption alongside runtime-service The control plane pins this repository as a gitlink and declares both git-submodule-consumer and workflow-module-consumer relationships, but the module contract enumerated only runtime-service. A planner reading module.consumption therefore got a different dependency model from .gitmodules. Declare both modes: git-submodule for the physical gitlink, runtime-service for reusable-workflow execution from this repository. --- .gds/repository.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gds/repository.yaml b/.gds/repository.yaml index f929fe2..4634bf7 100644 --- a/.gds/repository.yaml +++ b/.gds/repository.yaml @@ -53,6 +53,9 @@ agent: module: contract: "public" consumption: + # Physically pinned as a gitlink by the control plane, and executed by + # GitHub directly from this repository as a reusable workflow. + - "git-submodule" - "runtime-service" compatibility: "semver" pin_policy: "default-branch-commit"