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 1 commit
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 real result?
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
placeholder: |
Describe the real result you got.
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
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 an explicit steps to reproduce the issue.
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
Reproductions cases must be minimal and focused around the specific problem you are experiencing. This is the best way to ensure this issue is triaged quickly.
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
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: Version PHP
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
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 version of operating system are you running?
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
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