Skip to content

Commit ca0c887

Browse files
Merge pull request #10 from devajmeireles/introducing-github-issue-template
Introducing GitHub Issue Template
2 parents 2055217 + 5654b0a commit ca0c887

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Bug Report
2+
description: "Report something that's broken."
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: "Please read [our full contribution guide](https://laravel.com/docs/contributions#bug-reports) before submitting bug reports. If you notice improper DocBlock, PHPStan, or IDE warnings while using Laravel, do not create a GitHub issue. Instead, please submit a pull request to fix the problem."
7+
- type: input
8+
attributes:
9+
label: Wayfinder Version
10+
description: Provide the version of the Laravel Wayfinder that you are using.
11+
placeholder: 0.1.0
12+
validations:
13+
required: true
14+
- type: input
15+
attributes:
16+
label: Laravel Version
17+
description: Provide the Laravel version that you are using. [Please ensure it is still supported.](https://laravel.com/docs/releases#support-policy)
18+
placeholder: 11.6.1
19+
validations:
20+
required: true
21+
- type: input
22+
attributes:
23+
label: PHP Version
24+
description: Provide the PHP version that you are using.
25+
placeholder: 8.2.0
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: Description
31+
description: Provide a detailed description of the issue you are facing.
32+
validations:
33+
required: true
34+
- type: textarea
35+
attributes:
36+
label: Steps To Reproduce
37+
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"`.
38+
validations:
39+
required: true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
/package-lock.json
55
/vendor
66
/workbench/resources/js
7+
.idea
8+
.vscode

0 commit comments

Comments
 (0)