-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from Hunter275/issue_templates
Issue Templates for web
- Loading branch information
Showing
2 changed files
with
111 additions
and
0 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,94 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: dropdown | ||
id: hardware | ||
attributes: | ||
label: Hardware | ||
description: What hardware are you encountering this issue on? | ||
multiple: true | ||
options: | ||
- Not Applicable | ||
- T-Beam | ||
- T-Beam S3 | ||
- T-Beam 0.7 | ||
- T-Lora v1 | ||
- T-Lora v1.3 | ||
- T-Lora v2 1.6 | ||
- T-Deck | ||
- T-Echo | ||
- T-Watch | ||
- Rak4631 | ||
- Rak11200 | ||
- Rak11310 | ||
- Heltec v1 | ||
- Heltec v2 | ||
- Heltec v2.1 | ||
- Heltec V3 | ||
- Heltec Wireless Paper | ||
- Heltec Wireless Tracker | ||
- Raspberry Pi Pico (W) | ||
- Relay v1 | ||
- Relay v2 | ||
- DIY | ||
- Other | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: category | ||
attributes: | ||
label: Connection Type | ||
description: How are you connecting to your device? | ||
multiple: true | ||
options: | ||
- HTTP | ||
- Bluetooth | ||
- Serial | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: local | ||
attributes: | ||
label: Local or Hosted | ||
description: Are you using `meshtastic.local` or `client.meshtastic.org`? | ||
multiple: true | ||
options: | ||
- http://meshtastic.local | ||
- https://client.meshtastic.org | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: Firmware Version | ||
description: This can be found on the device's screen or via one of the apps. | ||
placeholder: x.x.x.yyyyyyy | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: body | ||
attributes: | ||
label: Description | ||
description: Please provide details on what steps you performed for this to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant console output | ||
description: If you have any log output to help in diagnosing your bug, please provide it here. | ||
render: Shell | ||
validations: | ||
required: false |
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,17 @@ | ||
name: Feature Request | ||
description: Request a new feature | ||
title: "[Feature Request]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for your request this will not gurantee that we will implement it, but it will be reviewed. | ||
- type: textarea | ||
id: body | ||
attributes: | ||
label: Description | ||
description: Please provide details about your enhancement. | ||
validations: | ||
required: true |