From e796f96325085036ce233e9194dcd58eb4fa4d24 Mon Sep 17 00:00:00 2001 From: Luis Blanco Date: Fri, 21 Feb 2025 15:28:15 +0400 Subject: [PATCH] Add missing GH stuff --- .github/ISSUE_TEMPLATE/bug_report.md | 20 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 14 ++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 17 +++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..941d02d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,20 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG] ___ doesn't work" +labels: bug +assignees: raub + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. ___ +2. ___ +3. ___ + +**Expected behavior** +Description of what you expected to happen. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..9ba6e86 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,14 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEAT] ____" +labels: new +assignees: raub + +--- + +**Describe the solution you'd like** +Description of what you want to happen. + +**Describe alternatives you've considered** +Description of alternative solutions or features you've considered. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..1682080 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,17 @@ +## Description + + + +## Test Plan + +1. +2. +3. + + +## Checklist + +- [ ] I've followed the code style. +- [ ] I've tried running the code with my changes. +- [ ] The docs and TS declarations are in sync with code changes. +- [ ] (optional) I've added unit tests for my changes.