-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
9ed81cd
commit c9e83c0
Showing
1 changed file
with
56 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,56 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "Bug: " | ||
labels: [bug, triage] | ||
assignees: | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Report an issue with XState or any XState-related tooling. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please provide a clear and concise description of what the bug is. | ||
placeholder: Something is broken! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected result | ||
description: What did you expect to happen? | ||
placeholder: I expected this to work. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual result | ||
description: What was the actual observed result? | ||
placeholder: This did not work. | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Reproduction | ||
description: | | ||
Please provide a reproducible example. You can use one of the following templates: | ||
- [CodeSandbox template (JavaScript)](https://codesandbox.io/s/xstate-example-template-m4ckv) | ||
- [CodeSandbox template (TypeScript)](https://codesandbox.io/s/xstate-typescript-template-s9kz8) | ||
- ⚛︎ [CodeSandbox template (React)](https://codesandbox.io/s/xstate-react-template-3t2tg) | ||
- ⚛︎ [CodeSandbox template (React + TypeScript)](https://codesandbox.io/s/xstate-react-typescript-template-wjdvn) | ||
- 💚 [CodeSandbox template (Vue + Composition API)](https://codesandbox.io/s/xstate-vue-template-composition-api-1n23l) | ||
- [XState Visualizer](https://xstate.js.org/viz/) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here (e.g., XState version) | ||
validations: | ||
required: false |