-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
86 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,86 @@ | ||
name: Issue Report | ||
description: File an issue report related to the Unity-Headunit. This should ONLY be used for issues (such as bugs or something broken)! | ||
title: "[Issue] " | ||
labels: ["issue"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Hello, and thank you for reporting an issue with the DIY-Unity Headunit (UHU)! | ||
When filling out the information below, please try to provide as much details as you can, the more you provide, the more likely we can help and fix something. | ||
- type: dropdown | ||
id: platform | ||
attributes: | ||
label: What platform are you experiencing this issue on? | ||
options: | ||
- Windows | ||
- Linux | ||
- Other | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: architecture | ||
attributes: | ||
label: What architecture is your platform? | ||
options: | ||
- 64-Bit | ||
- 32-Bit | ||
- Arm | ||
- Armhf | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: What version / release type of UHU are you using? | ||
options: | ||
- Latest Release | ||
- Beta Release | ||
- Alpha Release | ||
- Developer Release | ||
- Production Build (No support provided) | ||
- Other (Please provide) | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: unity-version | ||
attributes: | ||
label: What Unity version are you running? | ||
placeholder: 2021.3.22f1 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: issue-describe | ||
attributes: | ||
label: Describe what the issue you are experiencing is. | ||
description: Tells us what the issue exactly is. | ||
placeholder: Please provide a description on the issue | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproducible-steps | ||
attributes: | ||
label: Provide reproducible steps for this issue. | ||
description: Providing reproducible steps always helps. You could also provide a project with the issue here. If its a Unity project please delete the cache folder (`/Library`) and other unnecessary files from it (Such as `/Temp`, `/obj`, `*.csproj` files and builds). | ||
placeholder: Please provide reproducible steps | ||
value: "1. I did this. | ||
2. I then did that. | ||
3. Boom! Issue." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Any additional info you like to provide? | ||
description: Provide images, use code blocks for code or other info if you think it will help. Remember more info is always better. | ||
validations: | ||
required: false |