From c8521346e9526044dbef15afa086d450cd0f3ec6 Mon Sep 17 00:00:00 2001 From: oap75 Date: Wed, 23 Aug 2023 11:12:12 +0300 Subject: [PATCH] feat: add issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 47 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 30 +++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..89ad4db69 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,47 @@ +--- + +name: 🐛 Bug Report +about: Template for reporting bugs +title: '' +labels: bug +assignees: '' + +--- + +<!-- +Note: Please search to see if an issue already exists for the bug you encountered. +--> + +### Current Behavior: +<!-- A concise description of what you're experiencing. --> + +### Expected Behavior: +<!-- A concise description of what you expected to happen. --> + +### Steps To Reproduce: +<!-- +Example: steps to reproduce the behavior: +1. In this environment... +1. With this config... +1. Run '...' +1. See error... +--> + +## Environment +<!-- What is the environment that the bug happens? +Example: +- OS: Ubuntu 20.04 +- Node: 13.14.0 +- npm: 7.6.3 +--> + +## ✔️ Possible solutions +<!-- (This section is optional.) +Any hint on how to solve the issue? +What parts of the code will be affected? +--> + +### Anything else: +<!-- +Links? References? Anything that will give us more context about the issue that you are encountering! +--> diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..2e0b4960f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,30 @@ +--- +name: ✨ Feature request +about: Template for requesting new features +title: "<title>" +labels: enhancement +assignees: "" +--- + +## 📚 Context +<!-- +What is the problem that you are trying to solve? +Why is this problem relevant? +--> + +## ✔️ Solution +<!-- +(This section and the ones below are optional.) +What are the possible solutions? +If there are multiple, what are the benefits and drawbacks of each one? +--> + +## 📈 Subtasks +<!-- +- [ ] If there is a solution, what are the subtasks for completing this issue? +--> + +## 🎯 Definition of Done +<!-- +- [ ] If there is a solution, what are the final deliverables? +--> \ No newline at end of file