diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..128d2f8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,25 @@ +--- +name: Bug report +about: Report a bug to help improve the project +title: "[Bug] " +labels: bug +assignees: '' +--- + +### Describe the bug +A clear and concise description of what the bug is. + +### Steps to reproduce +1. Go to '...' +2. Click on '...' +3. Scroll down to '...' +4. See error + +### Expected behavior +A clear and concise description of what you expected to happen. + +### Screenshots (if applicable) +If applicable, add screenshots to help explain the problem. + +### Additional context +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..5ab82db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[Feature] " +labels: enhancement +assignees: '' +--- + +### Describe the feature +A clear and concise description of what the feature is. + +### Why is it needed? +Explain why this feature would be beneficial. + +### Additional context +Add any other context or screenshots about the feature request here. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..7998404 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +### Description +Please provide a short summary of the changes. + +### Related Issue +If this PR is related to an issue, please link it here. + +### Changes +- [ ] List your changes here + +### Checklist +- [ ] My code follows the style guidelines of this project +- [ ] I have performed a self-review of my code +- [ ] I have commented my code where necessary +- [ ] My changes do not introduce any new bugs