-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename 1_Bug_report.md to 1_Bug_report.yml
- Loading branch information
1 parent
e68846c
commit baf0e30
Showing
2 changed files
with
48 additions
and
20 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,48 @@ | ||
name: Bug Report | ||
description: "Report a general library issue." | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Before submitting your report, [please ensure your Laravel version is still supported](https://laravel.com/docs/releases#support-policy)." | ||
- type: input | ||
attributes: | ||
label: Envoy Version | ||
description: Provide the Envoy version that you are using. | ||
placeholder: 1.6.1 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Laravel Version | ||
description: Provide the Laravel version that you are using. | ||
placeholder: 10.4.1 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: PHP Version | ||
description: Provide the PHP version that you are using. | ||
placeholder: 8.1.4 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Database Driver & Version | ||
description: If applicable, provide the database driver and version you are using. | ||
placeholder: "MySQL 8.0.31 for macOS 13.0 on arm64 (Homebrew)" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Provide a detailed description of the issue you are facing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Provide detailed steps to reproduce your issue. If necessary, please provide a GitHub repository to demonstrate your issue using `laravel new bug-report --github="--public"`. | ||
validations: | ||
required: true | ||
|