From 1a053ca4419a3e1afdbce8a7d7d695604f549346 Mon Sep 17 00:00:00 2001 From: davide Date: Tue, 15 Apr 2025 21:12:51 +0200 Subject: [PATCH] feat: add Pull Request template proposal This commit introduces a standardized Pull Request template to help contributors submit clear and consistent PRs. The template includes sections for describing the change, testing instructions, acceptance criteria, and related issues. It aims to improve collaboration, streamline reviews, and reduce misunderstandings by ensuring all relevant context is provided up front. --- .github/PULL_REQUEST_TEMPLATE.md | 90 ++++++++++++++++++++++++++++++++ 1 file changed, 90 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 0000000..f6ca9a7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,90 @@ + + +--- + +#### ๐Ÿงพ What this PR does + + + +--- + +#### ๐Ÿงฉ Type of change + +- [ ] Bug fix +- [ ] New feature +- [ ] Documentation update +- [ ] Refactor +- [ ] Other (please describe): ____________ + +--- + +#### ๐Ÿงช How to test it + + + +--- + +#### โœ… Acceptance Criteria + + + +- [ ] Pod starts without errors +- [ ] Nginx logs are available +- [ ] All relevant tests pass +- [ ] Documentation is updated (if needed) + +--- + +#### ๐Ÿ“Ž Related Issue(s) + + + +--- + +#### ๐Ÿ’ฌ Notes for Reviewers + + + +--- + +#### ๐Ÿ“ธ Screenshots / Logs (if applicable) + + + +--- + +#### ๐Ÿง  Additional Context + + \ No newline at end of file