Skip to content

Commit e287016

Browse files
Issue form for bugs (#46681)
* Create Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Update Bug_report.yml * Delete 1_Bug_report.md * Update Bug_report.yml --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 3bc2d9d commit e287016

File tree

2 files changed

+46
-19
lines changed

2 files changed

+46
-19
lines changed

.github/ISSUE_TEMPLATE/1_Bug_report.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/Bug_report.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Bug Report
2+
description: "Report something that's broken."
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "Before submitting your report, [please ensure your Laravel version is still supported](https://laravel.com/docs/releases#support-policy)."
8+
- type: input
9+
id: laravel-version
10+
attributes:
11+
label: Laravel Version
12+
description: Provide the Laravel version that you are using.
13+
placeholder: 10.4.1
14+
validations:
15+
required: true
16+
- type: input
17+
id: php-version
18+
attributes:
19+
label: PHP Version
20+
description: Provide the PHP version that you are using.
21+
placeholder: 8.1.4
22+
validations:
23+
required: true
24+
- type: input
25+
id: database-version
26+
attributes:
27+
label: Database Driver & Version
28+
description: If applicable, provide the database driver and version you are using.
29+
placeholder: "MySQL 8.0.31 for macOS 13.0 on arm64 (Homebrew)"
30+
validations:
31+
required: false
32+
- type: textarea
33+
id: description
34+
attributes:
35+
label: Description
36+
description: Provide a detailed description of the issue you are facing.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: reproduce
41+
attributes:
42+
label: Steps To Reproduce
43+
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"`.
44+
validations:
45+
required: true
46+

0 commit comments

Comments
 (0)