fix(renovate): preset path syntax -- use // file-path form
Summary
Renovate's gitlab>org/repo:name syntax expects name to resolve as a preset identifier (within a default.json or similar). The reference (and its templates + the renovate standard) was using:
gitlab>gitlab-com/public-sector/pipeline:presets/renovate.jsonThe : separator with a literal .json in the path confused the resolver, producing the "Cannot find preset's package" error filed in #1 (closed) (blocking Renovate from opening MRs against this repo).
Correct form: // file-path (double slash):
gitlab>gitlab-com/public-sector/pipeline//presets/renovate.jsonFixed across the estate (per "fix architecturally")
renovate.json(the reference itself)templates/{lab,docs,paper}/renovate.json(stamped consumer projects)standards/renovate/SKILL.md(the documented example)standards/renovate/templates/renovate.json(the canonical template)
Closes #1 (closed).
Test plan
- CI green
- After merge, Renovate dashboard issue stops re-firing on next bot run