From c6a3ee038411d49ff17f694c282fe4b63d6a93b5 Mon Sep 17 00:00:00 2001 From: Evgen Fil Date: Sat, 23 Jul 2022 23:27:22 +0500 Subject: [PATCH] Split "Context" textarea field into several required input fields (#962) --- .github/ISSUE_TEMPLATE/bug.yaml | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index afda160b36..3837c837a5 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -12,16 +12,31 @@ body: - label: I have searched in the issue tracker for similar bug reports, including closed ones required: true - - type: textarea + - type: markdown attributes: - label: Context - description: | - Please provide as much information as possible. This will help us to reproduce the issue and fix it. value: | - - Operating system: e.g. Ubuntu 20.04.2 LTS - - Python Version: e.g. 3.10.1 - - aiogram version: e.g. 2.21 or 3.0b3 - - aiohttp version: e.g. 3.8.1 + ## Context + + Please provide as much information as possible. This will help us to reproduce the issue and fix it. + + - type: input + attributes: + label: Operating system + placeholder: e.g. Ubuntu 20.04.2 LTS + validations: + required: true + + - type: input + attributes: + label: Python version + placeholder: e.g. 3.10.1 + validations: + required: true + + - type: input + attributes: + label: aiogram version + placeholder: e.g. 2.21 or 3.0b3 validations: required: true