-
Notifications
You must be signed in to change notification settings - Fork 124
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
1 parent
3043c3d
commit fa2a67e
Showing
1 changed file
with
65 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,65 @@ | ||
name: "Bug report" | ||
description: "Report an issue with the game" | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thanks for taking the time to submit a thorough issue report for Destination Sol! | ||
- **Please fill out whichever details below seem relevant to your issue.** | ||
- **Note that suggestions, general questions & support should go on [Discord](https://discord.gg/Terasology).** | ||
- **Bug reports and crashes likely resulting from bugs in the engine go here on GitHub.** | ||
- type: textarea | ||
id: intent | ||
attributes: | ||
label: What you were trying to do | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What actually happened | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: How to reproduce | ||
placeholder: | | ||
* Step 1 | ||
* Step 2 | ||
* Step 3 | ||
validations: | ||
required: false | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Game version | ||
placeholder: '2.0.0' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Log details | ||
description: 'Please attach log files to the text area below' | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
options: | ||
- Windows | ||
- MacOS | ||
- Linux | ||
- Android | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: 'Additional Info' | ||
validations: | ||
required: false |