-
-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8828df5
commit b3d0bdd
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
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,102 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Please note we can't commit to any timeline. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug 🐞 | ||
description: A clear and concise description of what the bug is. | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce-steps | ||
attributes: | ||
label: Step to reproduce | ||
description: "Steps to reproduce the behavior:" | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: input | ||
id: reproduce-repository | ||
attributes: | ||
label: Reproduction repository | ||
description: "Simple repository representing the bug with unit tests" | ||
placeholder: /~https://github.com/reactivemarbles/DynamicData | ||
value: | | ||
/~https://github.com/reactivemarbles/DynamicData | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
value: This should happen... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots 🖼️ | ||
description: If applicable, add screenshots to help explain your problem. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: ide | ||
attributes: | ||
label: IDE | ||
multiple: true | ||
options: | ||
- Visual Studio 2022 | ||
- Visual Studio 2019 | ||
- Visual Studio 2017 | ||
- Visual Studio for Mac | ||
- Rider Windows | ||
- Rider macOS | ||
- Visual Studio Code | ||
- type: input | ||
id: operating-system | ||
attributes: | ||
label: Operating system | ||
description: Windows, Linux, Mac OS... | ||
validations: | ||
required: false | ||
- type: input | ||
id: system-version | ||
attributes: | ||
label: Version | ||
description: Version and distribution (if applicable) | ||
validations: | ||
required: false | ||
- type: input | ||
id: device | ||
attributes: | ||
label: Device | ||
description: Device e.g. iPhone 6 | ||
validations: | ||
required: false | ||
- type: input | ||
id: dynamic-data-version | ||
attributes: | ||
label: DynamicData Version | ||
description: e.g. 15.1.1 | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information ℹ️ | ||
description: Add any other information about the problem here. | ||
validations: | ||
required: false |