diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..02f6942 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -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