-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tranform bug report template into a Form (#3540)
* Create bug_report.yaml * Delete .github/ISSUE_TEMPLATE/bug_report.md * Delete .github/ISSUE_TEMPLATE/feature_request.md * Update bug_report.yaml * Update bug_report.yaml * Update bug_report.yaml
- Loading branch information
1 parent
c65255f
commit f065955
Showing
3 changed files
with
70 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["🐞 Bug"] | ||
body: | ||
- type: textarea | ||
id: actual-behaviour | ||
attributes: | ||
label: Actual behaviour | ||
description: Provide a detailed description of the issue. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected behaviour | ||
description: Provide a detailed description of the expected behaviour. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: How do you trigger this bug? Please walk us through it step by step. | ||
value: | | ||
1. Go to '...' | ||
2. Tap on '...' | ||
3. Scroll down to '...' | ||
... | ||
render: bash | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: packages | ||
attributes: | ||
label: Which packages are you using? | ||
description: You may select more than one. | ||
multiple: true | ||
options: | ||
- StreamChat | ||
- StreamChatUI | ||
- StreamChatSwiftUI | ||
- type: input | ||
id: sdk-version | ||
attributes: | ||
label: Which SDK version are you using? | ||
placeholder: ex. 4.56.1 | ||
validations: | ||
required: true | ||
- type: input | ||
id: ios-version | ||
attributes: | ||
label: Which iOS version is the issue reproducible? | ||
placeholder: ex. iOS 15.4 | ||
validations: | ||
required: true | ||
- type: input | ||
id: device-version | ||
attributes: | ||
label: Which iPhone Device is the issue reproducible? | ||
placeholder: ex. iPhone 16 Pro | ||
validations: | ||
required: true | ||
- type: input | ||
id: xcode-version | ||
attributes: | ||
label: Which Xcode version are you using? | ||
placeholder: ex. Xcode 15.1 | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.