generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 41
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
8a4479a
commit 8767633
Showing
1 changed file
with
68 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,68 @@ | ||
name: Bug report | ||
description: Report a problem you're experiencing | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before opening a bug report, please search the existing issues (both open and closed). | ||
--- | ||
Thank you for taking the time to file a bug report. To address this bug as fast as possible, we need some information. | ||
- type: input | ||
id: plugin-version | ||
attributes: | ||
label: Plugin Version | ||
description: Please provide the installed plugin | ||
placeholder: v2.0.0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: laravel-version | ||
attributes: | ||
label: Laravel Version | ||
description: Please provide the full Laravel version of your project. | ||
placeholder: v10.0.0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: livewire-version | ||
attributes: | ||
label: Livewire Version | ||
description: Please provide the full Livewire version of your project, if applicable. | ||
placeholder: v3.0.0 | ||
- type: input | ||
id: php-version | ||
attributes: | ||
label: PHP Version | ||
description: Please provide the full PHP version of your server. | ||
placeholder: PHP 8.3.0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Problem description | ||
description: What happened when you experienced the problem? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expectation | ||
attributes: | ||
label: Expected behavior | ||
description: What did you expect to happen instead? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Which steps do we need to take to reproduce the problem? Any code examples need to be **as short as possible**, remove any code that is unrelated to the bug. **This issue will be automatically closed and not reviewed if detailed replication steps are missing.** | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: If applicable, provide relevant log output. No need for backticks here. | ||
render: shell |