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

Create ISSUE_TEMPLATE.yml #118

Closed
wants to merge 3 commits into from
Closed
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
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

name: Report a Issues
description: Create a report to help us improve
body:
- type: markdown
attributes:
value: |
> If you have encountered a SECURITY RELATED ISSUE with Yii, [use the 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: expected
attributes:
label: What is the expected result?
placeholder: Describe what you expected to happen
validations:
required: false
- type: textarea
id: description
attributes:
label: Description
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: true
- type: markdown
attributes:
value: |
> **Please use the [Yii Chat channel](https://t.me/yii3en), [IRC channel](ircs://irc.libera.chat:6697/yii) or [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) for questions.**
- type: input
id: phpversion
attributes:
label: Version PHP
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?
multiple: false
options:
- Microsoft Windows
- Apple macOS
- Linux
default: 2
validations:
required: false
Loading