add issue form
This commit is contained in:
parent
4d2910d696
commit
b004185767
2 changed files with 115 additions and 93 deletions
93
.github/ISSUE_TEMPLATE/bug_report.md
vendored
93
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -1,93 +0,0 @@
|
|||
---
|
||||
name: 🛠️ Bug report
|
||||
about: Create a report about a technical issue
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
<!--
|
||||
Our bug tracker is ONLY for bugs. It is not for feature requests, questions, or comments.
|
||||
|
||||
Please fill out this template with all the information you have. We can't do much without
|
||||
both the logs and a detailed description of what you've encountered. Please do your best!
|
||||
|
||||
Please note that this tracker is only for bugs. Please try these locations if you have a question or comment:
|
||||
|
||||
https://community.signalusers.org/
|
||||
http://support.signal.org/
|
||||
support@signal.org
|
||||
|
||||
Lastly, be sure to preview your issue before saving. Thanks!
|
||||
-->
|
||||
|
||||
- [ ] I have searched open and closed issues for duplicates
|
||||
<!--
|
||||
You can search all issues here:
|
||||
https://github.com/signalapp/Signal-Desktop/issues?utf8=%E2%9C%93&q=is%3Aissue
|
||||
Replace [ ] with [X] once you've searched
|
||||
-->
|
||||
- [ ] I am using Signal-Desktop as provided by the Signal team, not a 3rd-party package.
|
||||
<!--
|
||||
If you're using a 3rd-party package, please report it to them first.
|
||||
For flatpak:
|
||||
- https://github.com/flathub/org.signal.Signal/issues
|
||||
For snap:
|
||||
- https://github.com/snapcrafters/signal-desktop/issues
|
||||
For archlinux:
|
||||
- https://aur.archlinux.org/packages/signal-desktop-beta/
|
||||
etc.
|
||||
-->
|
||||
|
||||
---
|
||||
|
||||
### Bug Description
|
||||
|
||||
<!-- Give an overall summary of the issue. -->
|
||||
|
||||
### Steps to Reproduce
|
||||
|
||||
<!-- Using bullet points, list the steps that reproduce the bug. -->
|
||||
|
||||
1. step one
|
||||
2. step two
|
||||
3. step three
|
||||
|
||||
Actual Result:
|
||||
|
||||
<!-- Describe the details of the buggy behaviour. -->
|
||||
|
||||
Expected Result:
|
||||
|
||||
<!-- Describe in detail what the correct behavior should be. -->
|
||||
|
||||
### Screenshots
|
||||
|
||||
<!--
|
||||
How to take screenshots on all OSes: https://www.take-a-screenshot.org/
|
||||
You can drag and drop images into this text box.
|
||||
-->
|
||||
|
||||
### Platform Info
|
||||
|
||||
Signal Version:
|
||||
|
||||
<!-- You can see Signal's version number at Help -> About or File -> About Signal Desktop -->
|
||||
|
||||
Operating System:
|
||||
|
||||
<!-- Instructions for finding your OS version are here: http://whatsmyos.com/ -->
|
||||
|
||||
Linked Device Version:
|
||||
|
||||
<!-- Android: Settings -> Help, iOS: Settings -> General -> About -->
|
||||
|
||||
### Link to Debug Log
|
||||
|
||||
<!--
|
||||
Immediately after the bug has happened, submit a debug log via View -> Debug Log, then copy that URL here.
|
||||
|
||||
In most cases, a log from your other devices is also useful:
|
||||
Android: https://support.signal.org/hc/en-us/articles/360007318591#android_debug
|
||||
iOS: https://support.signal.org/hc/en-us/articles/360007318591#ios_debug
|
||||
-->
|
115
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
115
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
|
@ -0,0 +1,115 @@
|
|||
name: 🛠️ Bug report
|
||||
description: Create a report about a technical issue
|
||||
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Our bug tracker is ONLY for bugs. It is not for feature requests, questions, or comments.
|
||||
|
||||
Please fill out this template with all the information you have. We can't do much without
|
||||
both the logs and a detailed description of what you've encountered. Please do your best!
|
||||
|
||||
Please note that this tracker is only for bugs. Please try these locations if you have a question or comment:
|
||||
|
||||
https://community.signalusers.org/
|
||||
http://support.signal.org/
|
||||
support@signal.org
|
||||
- type: checkboxes
|
||||
id: supported-version-and-no-duplicates
|
||||
attributes:
|
||||
label: "Using a supported version?"
|
||||
description: "Search issues here: https://github.com/signalapp/Signal-Desktop/issues"
|
||||
options:
|
||||
- label: I have searched searched open and closed issues for duplicates.
|
||||
required: true
|
||||
- label: I am using Signal-Desktop as provided by the Signal team, not a 3rd-party package.
|
||||
required: true
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
If you're using a 3rd-party package, please report it to them first.
|
||||
For Flatpak: https://github.com/flathub/org.signal.Signal/issues
|
||||
For Snap: https://github.com/snapcrafters/signal-desktop/issues
|
||||
For Arch Linux: https://aur.archlinux.org/packages/signal-desktop-beta/
|
||||
etc.
|
||||
- type: textarea
|
||||
id: description-of-bug
|
||||
attributes:
|
||||
label: Overall summary
|
||||
description: A clear and concise description of what the problem is that made you submit this report.
|
||||
placeholder: When trying to do this, then...
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: steps-to-reproduce
|
||||
attributes:
|
||||
label: Steps to reproduce
|
||||
description: List the steps to reproduce the issue you are encountering.
|
||||
placeholder: |
|
||||
1. Go to any chat.
|
||||
2. Do thing A.
|
||||
3. Do thing B.
|
||||
4. Things look off.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expected-result
|
||||
attributes:
|
||||
label: Expected result
|
||||
description: Describe in detail what the correct behavior should be.
|
||||
placeholder: It would display things correctly.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: actual-result
|
||||
attributes:
|
||||
label: Actual result
|
||||
description: Describe the details of the buggy behavior.
|
||||
placeholder: "It fails and displays the following error:"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: screenshots
|
||||
attributes:
|
||||
label: Screenshots
|
||||
description: "How to take screenshots on all Operating Systems: https://www.take-a-screenshot.org/"
|
||||
placeholder: You can drag and drop images into this text box.
|
||||
validations:
|
||||
required: false
|
||||
- type: input
|
||||
id: signal-version
|
||||
attributes:
|
||||
label: Signal version
|
||||
description: You can see Signal's version number at Help -> About or File -> About Signal Desktop
|
||||
placeholder: 6.30.2
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: os
|
||||
attributes:
|
||||
label: Operating system
|
||||
description: "Instructions for finding your OS version are here: http://whatsmyos.com/"
|
||||
placeholder: Windows 11
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: linked-device
|
||||
attributes:
|
||||
label: Linked device version
|
||||
description: "Android: Settings -> Help, iOS: Settings -> General -> About"
|
||||
placeholder: Windows 11
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: debug-log
|
||||
attributes:
|
||||
label: Link to debug log
|
||||
description: |
|
||||
Immediately after the bug has happened, submit a debug log via View -> Debug Log, then copy that URL here.
|
||||
In most cases, a log from your other devices is also useful:
|
||||
Android: https://support.signal.org/hc/en-us/articles/360007318591#android_debug
|
||||
iOS: https://support.signal.org/hc/en-us/articles/360007318591#ios_debug
|
||||
placeholder: Paste your link or debug log file here.
|
||||
validations:
|
||||
required: false
|
Loading…
Reference in a new issue