Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue templates #6

Merged
merged 2 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Report a bug to help improve the project
title: "<bug description>"
labels: bug
assignees: ''

---

Thanks for opening an issue ❤️

Write a short description of the bug in the issue title

**Describe the bug**
Describe the bug in length here.

**Expected behavior**
Describe what you expected to happen.

**Real behavior**
Describe what actually happens.

**To Reproduce**
List the steps needed to reproduce the bug:
1. ...
2. ...
etc...

**Context/Environment**
Write here the information about the environment in which the bug happens, such as:
- Your operating system:
- Your python version:

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem that you think might be relevant.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature request
about: Suggest an idea you'd like to see added to this project
title: "<feature description>"
labels: enhancement
assignees: ''
---

Thanks for opening an issue ❤️

Write a short description of your feature in the issue title

**Describe the feature you'd like**
Describe in length the feature you'd like to see added to this project.

**Is your feature request related to a problem?**
If applicable, describe the problem you have when using this project, and how this feature would solve it.
Ex.: It always frustrates me how...

**Additional context**
Add any other context or screenshots about the feature request you think might be relevant.
Loading