From cf2ff7b2310bd75294f337ff14980de727f180bf Mon Sep 17 00:00:00 2001 From: Julien Gautier Date: Tue, 26 May 2026 16:42:04 +0200 Subject: [PATCH] chore(gitlab): add MR template (ADR-0028 phase 1) Port .gitea/pull_request_template.md to .gitlab/merge_request_templates/ Default.md so new GitLab MRs surface the same structured prompt once Phase 2 lands the pipeline and developers start opening MRs. Two content adjustments vs the Gitea original: - PR -> MR in the comment header (GitLab terminology). - Fixed a stale ref to docs/development.md "section 5" (Observability dev-loop); the Conventional Commits convention is in section 7. Phase 1 ships repo-side artefacts only; ops bootstrap (mirror push, groups, branch protection, bot signing keys, Renovate endpoint reconfig) happens on vm-gitlab outside this PR per ADR-0028 section 'Migration sequence'. --- .gitlab/merge_request_templates/Default.md | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitlab/merge_request_templates/Default.md diff --git a/.gitlab/merge_request_templates/Default.md b/.gitlab/merge_request_templates/Default.md new file mode 100644 index 0000000..962a495 --- /dev/null +++ b/.gitlab/merge_request_templates/Default.md @@ -0,0 +1,30 @@ + + +## Summary + +## Motivation + +## Implementation notes + +## Verification + +- [ ] `pnpm ci:check` green locally +- [ ] `pnpm ci:audit` green (or pre-existing drift acknowledged) +- [ ] Tested manually: +- [ ] Architecture diagram updated (if `docs/architecture.md` was affected) +- [ ] ADR amended or added (if a decision changed) + +## Related -- 2.30.2