-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* github issue (bug) template * add php version
- Loading branch information
1 parent
1b578ab
commit dbbe07d
Showing
1 changed file
with
44 additions
and
4 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 |
---|---|---|
@@ -1,11 +1,51 @@ | ||
name: Bug Report | ||
description: What steps will reproduce the problem? | ||
labels: Bug | ||
description: Help us improve by reporting bugs or issues | ||
labels: | ||
- Bug | ||
body: | ||
- type: input | ||
id: impacted-version | ||
attributes: | ||
label: PHP-MVC Version | ||
placeholder: x.y.z | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: php-version | ||
attributes: | ||
label: PHP Version | ||
placeholder: 8.1 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Description of the problem found | ||
label: Bug Description | ||
description: Provide a clear and concise description of the bug. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: to-reproduce | ||
attributes: | ||
label: Steps To Reproduce | ||
description: | | ||
Steps to reproduce the behavior: | ||
1. '...' | ||
2. '...' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: Explain what you expected to happen instead. | ||
|
||
- type: textarea | ||
id: additional-details | ||
attributes: | ||
label: Additional Context | ||
description: Any other details you think might be relevant, including potential solutions. |