Skip to content

Commit

Permalink
Create crash.yml
Browse files Browse the repository at this point in the history
Add crash report template
  • Loading branch information
sirjuddington authored Jan 2, 2024
1 parent c160ac5 commit 9941fc5
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/crash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Crash Report
description: File a crash report
labels: ["crash-bug"]
body:
- type: input
id: version
attributes:
label: SLADE Version
description: "The version displayed in Help→About. Please add the commit hash if you have compiled SLADE yourself."
placeholder: "3.2.5"
validations:
required: true
- type: dropdown
id: os
attributes:
label: "OS"
description: "On which operating system are you experiencing this crash?"
multiple: true
options:
- Windows
- macOS
- Linux
validations:
required: true
- type: dropdown
id: editor
attributes:
label: "Editor"
description: "In which part of SLADE are you experiencing this crash?"
multiple: true
options:
- Resource editor
- Map editor
validations:
required: false
- type: textarea
id: repro
attributes:
label: Steps to Reproduce
description: What were you doing when the crash occurred, and can you reproduce it reliably? Include output and error messages if applicable.
value: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. Crash
render: text
validations:
required: true
- type: textarea
id: stacktrace
attributes:
label: Stack Trace
description: Paste the stack trace from the SLADE crash dialog here
render: text
validations:
required: true
- type: textarea
id: screenshot
attributes:
label: "Screenshots"
description: If applicable, add screenshots to help explain how to reproduce the crash.
value: |
![DESCRIPTION](LINK.png)
render: text
validations:
required: false

0 comments on commit 9941fc5

Please # to comment.