From 41022dcd4201e1444021df69613716e9b0db7730 Mon Sep 17 00:00:00 2001 From: Brian Skinn Date: Mon, 5 Jun 2023 10:29:44 -0400 Subject: Add general issue and start of bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 57 +++++++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 +++ 2 files changed, 62 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml 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] - " +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 -- cgit v1.2.3