diff options
author | Brian Skinn <brian.skinn@gmail.com> | 2023-06-05 10:51:01 -0400 |
---|---|---|
committer | Brian Skinn <brian.skinn@gmail.com> | 2023-07-07 12:04:41 -0400 |
commit | 05582f5eaa02a3299fbd1255557dd25a2b1ae494 (patch) | |
tree | 299408582bd9350a95268189ed340cdf9fb2d400 | |
parent | 41022dcd4201e1444021df69613716e9b0db7730 (diff) |
Complete first bug_report.yml draft
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 48 |
1 files changed, 44 insertions, 4 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 813898b2..b3751cce 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: Bug Report -description: paramiko appears to be doing something wrong +description: For when paramiko appears to be doing something wrong title: "[BUG] - <title>" labels: ["Bug"] @@ -35,7 +35,7 @@ body: - type: input id: paramiko_version attributes: - label: What version(s) of paramiko are you working with? + label: What version(s) of paramiko are you using? description: | Find out with `$ python -c "import paramiko; print(paramiko.__version__)"` placeholder: | @@ -46,7 +46,7 @@ body: - type: input id: python_version attributes: - label: What version(s) of Python are you working with? + label: What version(s) of Python are you using? description: | Find out with `$ python -V` placeholder: | @@ -54,4 +54,44 @@ body: validations: required: true -
\ No newline at end of file + - type: input + id: os_info + attributes: + label: What operating system and version are you using? + placeholder: | + Example: WSL on Windows 11; or MacOS Mojave; or Ubuntu 22.10 + validations: + required: true + + - type: input + id: hardware_info + attributes: + label: What SSH hardware are you trying to connect to/with? + + - type: textarea + id: desired_behavior + attributes: + label: Please describe what you are trying to do with paramiko. + description: | + Please include your code and be as detailed as possible. + validations: + required: true + + - type: textarea + id: actual_behavior + attributes: + label: Please describe what paramiko is actually doing instead. + description: | + Please be as detailed as possible. + validations: + required: true + + - type: textarea + id: repro + attributes: + label: If possible, please provide a minimal reproducing example of the bug. + + - type: textarea + id: more_info + attributes: + label: Anything else? |