Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split "Context" textarea field inside Issue template into several required input fields #962

Merged
merged 1 commit into from Jul 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 23 additions & 8 deletions .github/ISSUE_TEMPLATE/bug.yaml
Expand Up @@ -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
uwinx marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true

- type: input
attributes:
label: aiogram version
placeholder: e.g. 2.21 or 3.0b3
uwinx marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true

Expand Down