summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorBrian Skinn <brian.skinn@gmail.com>2023-06-05 10:29:44 -0400
committerBrian Skinn <brian.skinn@gmail.com>2023-07-07 12:04:41 -0400
commit41022dcd4201e1444021df69613716e9b0db7730 (patch)
tree6523fdd61d0c19b848c875adcdc964b5054f62cf /.github
parent3e24032af1cafe89a55e7af01fe961816016ad71 (diff)
Add general issue and start of bug_report.yml
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml57
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml5
2 files changed, 62 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 00000000..813898b2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,57 @@
+name: Bug Report
+description: paramiko appears to be doing something wrong
+title: "[BUG] - <title>"
+labels: ["Bug"]
+
+body:
+ - type: dropdown
+ id: usage_posture
+ attributes:
+ label: Are you using paramiko as a client or server?
+ multiple: false
+ options:
+ - Client
+ - Server
+ - Both
+ validations:
+ required: true
+
+ - type: dropdown
+ id: features
+ attributes:
+ label: What features aren't working right?
+ description: Select as many as are relevant
+ multiple: true
+ options:
+ - SSH
+ - SFTP
+ - Keys/auth
+ - known_hosts
+ - sshconfig
+ - Something else
+ validations:
+ required: true
+
+ - type: input
+ id: paramiko_version
+ attributes:
+ label: What version(s) of paramiko are you working with?
+ description: |
+ Find out with `$ python -c "import paramiko; print(paramiko.__version__)"`
+ placeholder: |
+ Example: 3.1.0
+ validations:
+ required: true
+
+ - type: input
+ id: python_version
+ attributes:
+ label: What version(s) of Python are you working with?
+ description: |
+ Find out with `$ python -V`
+ placeholder: |
+ Example: 3.11.3
+ validations:
+ required: true
+
+ \ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..48cce69e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: true
+contact_links:
+ - name: "Blank issue template"
+ url: https://github.com/paramiko/paramiko/issues/new
+ about: "A last resort, if none of the other issue types fits" \ No newline at end of file