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

add bug report issue template #531

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Bug Report
description: Помогите нам сделать библиотеку vk-bridge более стабильной
title: '[Bug]: '
body:
- type: textarea
id: what-happened
attributes:
label: Описание
description: Расскажите о вашей проблеме.
validations:
required: true
- type: input
id: version
attributes:
label: Версия vk-bridge
description: Поможет локализовать проблему.
validations:
required: true
- type: dropdown
id: platform
attributes:
label: Платформа
description: Выберите одну или несколько платформ, на которых воспроизводится ошибка.
multiple: true
options:
- Web
- MobileWeb
- IOS
- Android
validations:
required: true
- type: input
id: browser_version
attributes:
label: Браузер и версия
description: Если ошибка в Web/MobileWeb.
- type: textarea
id: steps
attributes:
label: Шаги воспроизведения
description: Желательно описать последовательность, при которой ошибка стабильно воспроизводится.
- type: textarea
id: expectations
attributes:
label: Ожидаемое поведение
description: Если считаете, что из описания ожидаемое поведение непонятно.
- type: textarea
id: screenshots
attributes:
label: Скриншоты
description: Прикрепите скриншоты, если есть такая возможность.
- type: textarea
id: reproduce-example
attributes:
label: Пример с воспроизведением
description: Ссылка на ваше приложение, в котором можно воспроизвести ошибку.
- type: markdown
attributes:
value: |
Спасибо за то, что помогаете нам стать лучше!
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ yarn-error.log
coverage
.nyc_output

# GitHub templates
.github/**/*.md
# GitHub
.github/*

# Yarn
.yarn/*
Expand Down
Loading