Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github issue (bug) template #373

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 44 additions & 4 deletions .github/ISSUE_TEMPLATE/Bug_report.yaml
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.
Loading