Bug report template changes
Remove title. Add bug label. Make id first property.
This commit is contained in:
parent
22b0e6ca88
commit
a160e9bae7
|
@ -1,8 +1,9 @@
|
||||||
name: Bug report
|
name: Bug report
|
||||||
description: Template for bug reports.
|
description: Template for bug reports.
|
||||||
title: 'Bug: '
|
labels: bug
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- id: disclaimer
|
||||||
|
type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
Try to create a very concise title that's straight to the point.
|
Try to create a very concise title that's straight to the point.
|
||||||
|
@ -14,8 +15,8 @@ body:
|
||||||
A game specific issue would be e.g. "Game X crashes after you hit a character a certain way"
|
A game specific issue would be e.g. "Game X crashes after you hit a character a certain way"
|
||||||
A Xenia issue would be e.g. "Kernel export NtDoSomething does nothing"
|
A Xenia issue would be e.g. "Kernel export NtDoSomething does nothing"
|
||||||
For specific games, visit https://github.com/xenia-project/game-compatibility#game-compatibility
|
For specific games, visit https://github.com/xenia-project/game-compatibility#game-compatibility
|
||||||
- type: checkboxes
|
- id: validation
|
||||||
id: validation
|
type: checkboxes
|
||||||
attributes:
|
attributes:
|
||||||
label: Validation
|
label: Validation
|
||||||
options:
|
options:
|
||||||
|
@ -32,23 +33,23 @@ body:
|
||||||
- label: 'My device meets the minimum requirements: https://github.com/xenia-project/xenia/wiki/Quickstart#system-requirements'
|
- label: 'My device meets the minimum requirements: https://github.com/xenia-project/xenia/wiki/Quickstart#system-requirements'
|
||||||
required: true
|
required: true
|
||||||
- label: '(If building) I have read the building doc: https://github.com/xenia-project/xenia/blob/master/docs/building.md'
|
- label: '(If building) I have read the building doc: https://github.com/xenia-project/xenia/blob/master/docs/building.md'
|
||||||
- type: textarea
|
- id: problem
|
||||||
id: problem
|
type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Describe what's going wrong
|
label: Describe what's going wrong
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- id: what-should-happen
|
||||||
id: what-should-happen
|
type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Describe what should happen
|
label: Describe what should happen
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- id: callstack
|
||||||
id: callstack
|
type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: If applicable, provide a callstack here, especially for crashes
|
label: If applicable, provide a callstack here, especially for crashes
|
||||||
- type: textarea
|
- id: logfile
|
||||||
id: logfile
|
type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: If applicable, upload a logfile and link it here
|
label: If applicable, upload a logfile and link it here
|
||||||
|
|
Loading…
Reference in New Issue