From 6e7bd2f6276b91b7f2e0eb25e6847fd4c61c2005 Mon Sep 17 00:00:00 2001 From: Alexandru Gherghescu <gherghescu_alex1@yahoo.ro> Date: Wed, 24 Jan 2024 19:42:40 +0200 Subject: [PATCH] Add merge request template Add a merge request template which aids in contributing to the codebase. Also see https://docs.gitlab.com/ee/user/project/description_templates.html. --- .gitlab/merge_request_templates/Default.md | 54 ++++++++++++++++++++++ 1 file changed, 54 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..153f29e --- /dev/null +++ b/.gitlab/merge_request_templates/Default.md @@ -0,0 +1,54 @@ +# Pull Request Title + +<!-- [Short description of the changes] --> + +## Description + +<!-- [DO NOT MODIFY] --> + +Wants to merge: %{source_branch} into %{target_branch} + +<!-- [Detailed explanation of the changes, why they are necessary, and any relevant context.] --> + +## Type of change + +<!-- [Mark the appropriate option with an "x".] --> +- [ ] Bug fix +- [ ] New feature +- [ ] Enhancement +- [ ] Documentation update +- [ ] Other (specify right below) + +## Merge request commits + +<!-- [DO NOT MODIFY] --> + +%{all_commits} + +## Related Issues + +<!-- Fixes #123, Addresses #456 --> + +## Screenshots or GIFs + +<!-- [Insert images or links for visual aid if applicable] --> + +## Checklist + +- [ ] I have tested the code with the changes manually. +- [ ] My code follows the project's style guidelines. +- [ ] I have documented my code for others to understand. +- [ ] I have updated documentation as needed (including `README.md`, code + comments and doc strings). + +## Reviewer Guidelines + +<!-- [Provide instructions or areas to focus on during the review.] --> + +## Additional Notes + +<!-- [Add any other relevant information or special instructions.] --> + +## @mentions + +<!-- @reviewer1 @reviewer2 --> -- GitLab