From 058df7b53d31745fc01c25a49793bdeddf466150 Mon Sep 17 00:00:00 2001 From: ofir-frd <85901822+ofir-frd@users.noreply.github.com> Date: Wed, 5 Feb 2025 16:32:45 +0200 Subject: [PATCH] feat: add pull request template --- PULL_REQUEST_TEMPLATE.md | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..97dbefc9 --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,48 @@ +## 📌 Pull Request Template + +### 1️⃣ Short Description + + +--- + +### 2️⃣ Related Open Issue + +Fixes # + +--- + +### 3️⃣ PR Type + + +- [ ] 🐞 Bug Fix +- [ ] ✨ New Feature +- [ ] 🔄 Refactoring +- [ ] 📖 Documentation Update + +--- + +### 4️⃣ Does this PR Introduce a Breaking Change? + +- [ ] ❌ No +- [ ] ⚠️ Yes (Explain below) + +If **yes**, describe the impact and necessary migration steps: + + +--- + +### 5️⃣ Current Behavior (Before Changes) + + +--- + +### 6️⃣ New Behavior (After Changes) + + +--- + +### ✅ Checklist +- [ ] Code follows the project's coding guidelines. +- [ ] Tests have been added or updated (if applicable). +- [ ] Documentation has been updated (if applicable). +- [ ] Ready for review and approval.