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

Update issue template #126

Merged
merged 7 commits into from
Jun 30, 2024
Merged
Show file tree
Hide file tree
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
16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

85 changes: 85 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@

name: 🐞 Report an issue
description: Let us know about framework problem
body:
- type: markdown
attributes:
value: |
> 🚨 If you have encountered a SECURITY RELATED ISSUE with Yii, [use this form](https://www.yiiframework.com/security) to report any security issues you have encountered to us. ***WARNING!*** DO NOT use the issue tracker or discuss it in the public forum as this will cause more harm than help.
- type: textarea
id: id-expected
attributes:
label: What is the expected result?
placeholder: |
Describe what you expected to happen.
Please also include relevant motivation and context.
validations:
required: true
- type: textarea
id: id-actual
attributes:
label: What is the actual result?
placeholder: |
Describe the actual result you got.
Write in detail anything that gives us more context about the problem you are facing!
validations:
required: true
- type: textarea
id: id-steps
attributes:
label: "Reproduction steps"
description: |
Please enter explicit steps to reproduce the issue.
The case must be minimal and focused around the specific problem you are experiencing. This is the best way to ensure this issue is triaged quickly.
value: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: false
- type: textarea
id: id-screenshot-logs
attributes:
label: "Screenshots / Logs"
description: |
If applicable, you can attach images or log files by clicking this area to highlight it and then dragging files in,
or copy and paste any relevant log output.
:warning: _Remember to redact or remove any sensitive information!_
validations:
required: false
- type: input
id: phpversion
attributes:
label: PHP version
description: What version of PHP are you running?
placeholder: Enter the PHP version you are using
validations:
required: false
- type: dropdown
id: osversion
attributes:
label: "Operating System"
description: What operating system are you running?
multiple: true
options:
- Windows
- Linux
- Mac
default: 1
validations:
required: false
- type: dropdown
id: browsers
attributes:
label: "Browsers"
description: What browsers are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- Opera
validations:
required: false
Loading