Skip to content

Commit

Permalink
adding initial version of the form to collect bugs instaed of the cur…
Browse files Browse the repository at this point in the history
…rent template that is mostly ignored (#1533)
  • Loading branch information
IsmaelMartinez authored Dec 21, 2024
1 parent 0cc0be7 commit 3cf1d15
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 5 deletions.
89 changes: 89 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_form_report.yaml
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).
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"electron": "^33.3.0",
"electron-builder": "^25.1.8",
"eslint": "^9.17.0",
"globals": "^15.13.0"
"globals": "^15.14.0"
},
"build": {
"appId": "teams-for-linux",
Expand Down

0 comments on commit 3cf1d15

Please sign in to comment.