-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding bug report template * adding feature request template * emojify bug report * emojify the feature request * adding triage for issue template * sections -> headers * remove priority * linking stackoverflow minimal reproducible example
- Loading branch information
1 parent
070eb06
commit 9c2fd94
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: π Bug Report | ||
description: File a bug report for mesa-frames | ||
title: "[Bug]: " | ||
labels: ["triage", "bug"] | ||
assignees: [] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! π | ||
Please provide as much detail as possible to help us address the issue. | ||
Use the following suggested headers to structure your bug report. | ||
Feel free to modify or add sections as needed to best communicate the issue. | ||
## π Description | ||
[Provide a clear and concise description of the bug] | ||
## π Steps to Reproduce | ||
[Provide a minimal code example that reproduces the error, see https://stackoverflow.com/help/minimal-reproducible-example] | ||
```python | ||
# Your code here | ||
``` | ||
## π― Expected Behavior | ||
[What did you expect to happen?] | ||
## π¨ Actual Behavior | ||
[What actually happened? Include any error messages or unexpected output] | ||
## π₯οΈ Environment Information | ||
Python version: | ||
Operating System: | ||
Relevant packages (output of `pip list` or the specific packages related to this issue): | ||
``` | ||
# Paste your pip list output or relevant package versions here | ||
``` | ||
## π Relevant log output | ||
``` | ||
# Paste any relevant log output here | ||
``` | ||
## β Additional Context | ||
[Add any other context about the problem here] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: β¨ Feature Request | ||
description: Suggest a feature for mesa-frames | ||
title: "[Feature]: " | ||
labels: ["triage", "feature"] | ||
assignees: [] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! π | ||
We appreciate your ideas to improve our project. | ||
Please use the following suggested headers to structure your feature request. | ||
Feel free to modify or add sections as needed to best communicate your idea. | ||
## π€ Problem Description | ||
[Is your feature request related to a problem? Please provide a clear and concise description of what the problem is.] | ||
## π‘ Proposed Solution | ||
[Describe the solution you'd like. What do you want to happen?] | ||
## π Alternatives Considered | ||
[Have you considered any alternative solutions or features? If so, please describe them.] | ||
## β Additional Context | ||
[Add any other context, screenshots, or examples about the feature request here.] |