-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding initial version of the form to collect bugs instaed of the cur…
…rent template that is mostly ignored (#1533)
- Loading branch information
1 parent
0cc0be7
commit 3cf1d15
Showing
3 changed files
with
94 additions
and
5 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,89 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
projects: ["IsmaelMartinez/teams-for-linux"] | ||
assignees: | ||
- ismaelmartinez | ||
body: | ||
- type: dropdown | ||
id: can-reproduce-pwa | ||
attributes: | ||
label: Can you reproduce this bug in the PWA? | ||
description: "If you can reproduce the bug in the PWA, it's likely a bug in the web app. Please report it to Microsoft instead" | ||
options: | ||
- Yes | ||
- No | ||
- Not applicable | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Reproduction steps | ||
description: "How do you trigger this bug? Please walk us through it step by step" | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
render: bash | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: "A clear and concise description of what you expected to happen" | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
render: bash | ||
- type: dropdown | ||
id: package | ||
attributes: | ||
label: What package are you using? | ||
options: | ||
- Built from source | ||
- deb | ||
- rpm | ||
- snap | ||
- flatpak | ||
- AppImage | ||
- tar.gz | ||
- aur | ||
- macOS | ||
- Windows | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our software are you running? | ||
placeholder: ex. 0.1.17 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: debug | ||
attributes: | ||
label: Debug | ||
description: "When possible, please run the application from the terminal using `--webDebug` and try to reproduce the error." | ||
value: | | ||
```bash | ||
teams-for-linux --webDebug --logConfig='{}' | ||
``` | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: Add any other context about the problem here that can help us understand and solve it faster. (like screenshots, etc). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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