-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename 🐞-bug-report.md to 🐞-bug_report.yml
upgrade it to GitHub issue form
- Loading branch information
1 parent
84d8042
commit e4ba650
Showing
2 changed files
with
80 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,80 @@ | ||
name: "🐞 Bug Report" | ||
description: "Tell us what went wrong" | ||
title: "[BUG] <title>" | ||
labels: ["🐞 bug"] | ||
assignees: [] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## 1. What issue or challenge are you experiencing? | ||
*What did you expect to happen, and what actually occurred?* | ||
- type: textarea | ||
id: issue-description | ||
attributes: | ||
label: Issue Description | ||
description: What did you expect to happen, and what actually occurred? | ||
placeholder: Describe the issue or challenge you're experiencing. | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
## 2. How can we reproduce this issue? | ||
*List the steps or actions we can follow to replicate the issue.* | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Provide the steps or actions that led to this problem. | ||
placeholder: | | ||
1. Step 1 | ||
2. Step 2 | ||
3. Step 3 | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
## 3. What's your setup? | ||
*Share details about your environment to help us troubleshoot:* | ||
- type: input | ||
id: os | ||
attributes: | ||
label: OS | ||
description: Your operating system. | ||
placeholder: e.g., Windows 10, macOS Ventura, Ubuntu 22.04 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: python-version | ||
attributes: | ||
label: Python Version | ||
description: Your Python version. | ||
placeholder: e.g., 3.9.1 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: nexa-sdk-version | ||
attributes: | ||
label: Nexa SDK Version | ||
description: Your Nexa SDK version. | ||
placeholder: e.g., 0.0.8.1 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: gpu | ||
attributes: | ||
label: GPU (if using one) | ||
description: Your GPU model. | ||
placeholder: e.g., NVIDIA RTX 3090, Apple M1 | ||
validations: | ||
required: false |