From 88d524b1ac400ec1c05ef05bffa1c2f24de291f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Poderoso?= <120394830+JesusPoderoso@users.noreply.github.com> Date: Tue, 9 Jul 2024 10:28:11 +0200 Subject: [PATCH] Add PR template (#203) * Refs #20414: Add PR template Signed-off-by: JesusPoderoso * Refs #20414: Apply rev suggestions Signed-off-by: JesusPoderoso * Refs #20414: Apply rev suggestions (2) Signed-off-by: JesusPoderoso --------- Signed-off-by: JesusPoderoso --- .github/pull_request_template.md | 50 ++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..93e41fcb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,50 @@ + + + + + +## Description + + + + + + + + + + + +## Contributor Checklist + + + +- [ ] Commit messages follow the project guidelines. +- [ ] The code follows the style guidelines of this project. +- [ ] Tests that thoroughly check the new feature have been added/Regression tests checking the bug and its fix have been added; the added tests pass locally +- [ ] Any new/modified methods have been properly documented using Doxygen. +- [ ] Changes are ABI compatible. +- [ ] Changes are API compatible. +- [ ] New feature has been added to the `versions.md` file (if applicable). +- [ ] Applicable backports have been included in the description. + +## Reviewer Checklist + +- [ ] The PR has a milestone assigned. +- [ ] The title and description correctly express the PR's purpose. +- [ ] Check contributor checklist is correct. +- [ ] Check CI results: changes do not issue any warning. +- [ ] Check CI results: CI pass and failing tests are unrelated with the changes.