From 89b7218461268218331730ee69fb81b0ce7481dc Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Fri, 6 Sep 2024 14:09:03 -0400 Subject: [PATCH] Update and rename bug_report.md to BUG.yml --- .github/ISSUE_TEMPLATE/BUG.yml | 63 ++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 27 ------------ 2 files changed, 63 insertions(+), 27 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/BUG.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/BUG.yml b/.github/ISSUE_TEMPLATE/BUG.yml new file mode 100644 index 0000000..7897741 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG.yml @@ -0,0 +1,63 @@ +name: Bug Report +description: Create a report to fix something that is broken +title: "[Bug]: " +labels: ["bug", "needs-triage"] +body: + - type: markdown + id: summary + validations: + required: true + attributes: + label: Summary + description: A clear and concise description of what the bug is. + - type: input + id: client-version + attributes: + label: Client version + description: Paste output of `ssh -V` + validations: + required: true + - type: input + id: server-version + attributes: + label: Server version + description: Paste output of `ssh-chat --version` + placeholder: e.g., ssh-chat v0.1.0 + validations: + required: true + + - type: input + id: latest-server-version + attributes: + label: Latest server version available (at time of report) + description: Check https://github.com/shazow/ssh-chat/releases and paste the latest version + placeholder: e.g., v0.2.0 + validations: + required: true + + - type: textarea + id: reproduce + attributes: + label: To Reproduce + description: Steps to reproduce the behavior: + placeholder: | + 1. Full command to run... + 2. Resulting output... + render: markdown + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + placeholder: Describe the expected behavior + validations: + required: true + + - type: textarea + id: context + attributes: + label: Additional context + description: Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index d5eec61..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to fix something that is broken -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**Versions** - - Client version: (Paste output of `ssh -V`) - - Server version: (Paste output of `ssh-chat --version`) - - Latest server version available: (Check https://github.com/shazow/ssh-chat/releases and paste the latest version) - -**To Reproduce** -Steps to reproduce the behavior: -1. Full command to run... -2. Resulting output... - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Additional context** -Add any other context about the problem here.