From f2cabfeab3372aa00e5075551f8a6e4d5dd60add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Guimmara?= Date: Wed, 8 Oct 2025 12:25:39 +0200 Subject: [PATCH] build(gitlab): add template for merge request --- .gitlab/merge_request_templates/default.md | 25 ++++++++++++++++++++++ CONTRIBUTING.md | 1 + 2 files changed, 26 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 0000000000..115f847f53 --- /dev/null +++ b/.gitlab/merge_request_templates/default.md @@ -0,0 +1,25 @@ +## Summary + +_Please provide a brief description of what this merge request does_ + +## 🚨 Breaking changes + +_Please provide a summary of the breaking changes brought by this MR, and why they are necessary. If no breaking change is present, you can write "none"._ + +## ⚙️ Implementation + +_Please provide an explanation of how this MR was implemented and technical details as necessary._ + +## 🧪 How to test this MR + +_If this MR adds a new feature, describe how this feature can be tested interactively. Ideally, provide an updated or new example that addresses this feature_. + +## 🏞️ Screenshots + +_Show your work !_ + +## ✔ Checklist + +- [ ] I have updated `CONTRIBUTORS.md` with my name if it is my first contribution +- [ ] I have updated or created unit tests when applicable +- [ ] I have updated or created documentation for the changes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 07c48e8381..16c95b9637 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -64,6 +64,7 @@ We welcome merge requests (MRs) with great interest. We try to promptly review t - If you plan to make a major change, please open an issue first. - If this is your first contribution to Giro3D, add your name to [CONTRIBUTORS.md](CONTRIBUTORS.md) - If your merge request fixes an existing issue, include a link to the issue in the description. +- Use the default template for merge requests. - If your merge request needs additional work, include a task list, or better, split it in several MRs - Ping `@giro3d` in the comments to get your code reviewed, and also when you are done making new commits to address feedback - Verify your code passes the linter and tests (`npm test`). -- GitLab