From 3821f1bda3691d2ea105184e1e760c34c30f3dda Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Tue, 21 Jun 2022 18:43:32 +0300 Subject: [PATCH] Add Spacing to Issue Templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 10 ++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 8 ++++++++ 2 files changed, 18 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 767eaff..07d3a50 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,10 @@ name: Bug Report + description: Report broken or incorrect behaviour + labels: - bug + body: - type: markdown attributes: @@ -10,35 +13,41 @@ body: If you want real-time support, consider joining our [Discord server](https://discord.gg/pTJfS4TkWe) instead. Please note that this form is for bugs only! + - type: input attributes: label: Summary description: A simple summary of your bug report. validations: required: true + - type: textarea attributes: label: Reproduction Steps description: What you do to make it happen? validations: required: true + - type: textarea attributes: label: Minimal Reproducible Code description: A short snippet of code that showcases the bug. render: Python + - type: textarea attributes: label: Expected Results description: What did you expect to happen? validations: required: true + - type: textarea attributes: label: Actual Results description: What actually happened? validations: required: true + - type: checkboxes attributes: label: Checklist @@ -51,6 +60,7 @@ body: required: true - label: I have removed my token from display, if visible. required: true + - type: textarea attributes: label: Additional Context diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index efc3d71..0239552 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,10 @@ name: Feature Request + description: Suggest a feature for this library + labels: - enhancement + body: - type: input attributes: @@ -9,6 +12,7 @@ body: description: A short summary of what your feature request is. validations: required: true + - type: dropdown attributes: multiple: false @@ -18,6 +22,7 @@ body: - The documentation validations: required: true + - type: textarea attributes: label: The Problem @@ -26,6 +31,7 @@ body: What becomes easier or possible when this feature is implemented? validations: required: true + - type: textarea attributes: label: The Ideal Solution @@ -34,12 +40,14 @@ body: What would you like this feature to do? validations: required: true + - type: textarea attributes: label: The Current Solution description: What is the current solution to the problem, if any? validations: required: false + - type: textarea attributes: label: Additional Context