-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bug and feature forms and discussion link to new issue page (#4)
- Loading branch information
Showing
3 changed files
with
109 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,71 @@ | ||
--- | ||
name: Bug Report | ||
description: Create an issue to let us know about a problem. | ||
title: "[Bug]: " | ||
labels: | ||
- bug | ||
- triage | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Pre-check | ||
description: | | ||
Please search through existing [issues](https://github.com/tektronix/tsp-toolkit/issues/) | ||
and [discussions](https://github.com/tektronix/tsp-toolkit/discussions) before entering a new issue. | ||
Feel free to 👍 any open issues that match the problem you encountered! | ||
options: | ||
- label: I have searched the existing issues and discussions to make sure my problem has not already been addressed. | ||
required: true | ||
- label: I have looked at the "Known Issues" Section of the marketplace page of all TSP Toolkit extensions. | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Search Terms | ||
description: | | ||
What terms did you use to search for existing issues? These terms will help others | ||
to find this issue later on. | ||
placeholder: | | ||
e.g. "debugger", "crash", "lost connection" | ||
- type: dropdown | ||
attributes: | ||
label: TSP Toolkit Version | ||
description: The version of `tektronix.tsp-toolkit` that you have installed. | ||
multiple: false | ||
options: | ||
- "0.15.0" | ||
- type: dropdown | ||
attributes: | ||
label: TSP Toolkit Develop Version | ||
description: The version of `tektronix.tsp-toolkit-develop` that you have installed | ||
multiple: false | ||
options: | ||
- "None" | ||
- "0.15.0" | ||
default: 0 | ||
- type: textarea | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: List the steps you took to exhibit the issue. | ||
placeholder: | | ||
Example: | ||
1. Open Command Pallette and enter "TSP: Open Terminal" | ||
2. Select "New Connection" | ||
3. Type in IP address for 2450 | ||
4. After connection, enter `print("some string that breaks the terminal")` | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: Let us know what you expect to happen. | ||
placeholder: | | ||
Example: | ||
The terminal should receive `some string that breaks the terminal` back from | ||
from the instrument. Followed by a new prompt. | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: Let us know what actually happened | ||
placeholder: | | ||
Example: | ||
The terminal immediately disappeared with no messages. | ||
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,32 @@ | ||
--- | ||
name: Bug Report | ||
description: Create an issue to let us know about a problem. | ||
title: "[Feature]: " | ||
labels: | ||
- bug | ||
- triage | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Pre-check | ||
description: | | ||
Please search through existing [issues](https://github.com/tektronix/tsp-toolkit/issues/) | ||
and [discussions](https://github.com/tektronix/tsp-toolkit/discussions) before entering a new feature request. | ||
Feel free to 👍 any open issues that match the problem you encountered! | ||
options: | ||
- label: I have searched the existing issues and discussions to make sure my problem has not already been addressed. | ||
required: true | ||
- label: I have looked at the "Known Issues" Section of the marketplace page of all TSP Toolkit extensions. | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Feature Idea | ||
description: Let us know in as much detail as you can the feature you would like. | ||
placeholder: | | ||
Example: | ||
As a user, I would like to be able to see my instruments list in a side panel | ||
as they are discovered so I can find the instrument I'm looking for quickly. | ||
This would idealy include the model number, serial number, and connection | ||
information for each instrument. |
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,6 @@ | ||
--- | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Community Support | ||
url: https://github.com/tektronix/tsp-toolkit/discussions | ||
about: Please ask and answer questions here. |