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 #120

Closed
wants to merge 17 commits into from
Closed
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.

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

name: 🐞 Report a Issues
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
description: Create a report to help us improve
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
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?
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
placeholder: |
Describe what you expected to happen.
Please also include relevant motivation and context.
validations:
required: false
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
- type: checkboxes
attributes:
label: 'Is there an existing issue for this?'
description: 'Please [search :mag: the issues](https://github.com/appium/appium/issues) to check if this bug has already been reported.'
options:
- label: 'I have searched the existing issues'
required: true
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
- type: input
id: id-fix-issues
attributes:
label: "Fixes # (issue)"
description: Please enter comma-separated list of tickets, if any
placeholder: 'ex. #1234; #45678; #99990;'
validations:
required: false
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
- type: textarea
id: id-description
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
attributes:
label: "Description"
description: |
Description of your incident. Please use the [Yii Chat channel](https://t.me/yii3en) or [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) for questions.
placeholder: Write in detail anything that gives us more context about the problem you are facing!
validations:
required: true
- type: input
id: id-reprod-url
attributes:
label: "Reproduction URL"
description: Please enter your GitHub URL to provide a reproduction of the issue
placeholder: ex. https://github.com/USERNAME/REPO-NAME
validations:
required: false
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
- type: textarea
id: id-reprod
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
attributes:
label: "Reproduction steps"
description: |
Please enter an explicit description of your 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.
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
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: 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
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does it do?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

contact_links:
- name: 🖐️ Yii Community
url: https://www.yiiframework.com/community
about: A friendly and helpful Yii community
- name: 🗪 Yii Slack channel
url: https://yiiframework.com/go/slack
about: Yii Slack channel
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
- name: ❓ Yii½ Forum
url: https://forum.yiiframework.com
about: Please use the Yii forum for questions regarding Yii 1 / 2
- name: ❓ Yii3 Forum
url: https://forum.yiiframework.com/c/yii-3-0/63
about: Please use the Yii3 forum for questions regarding Yii 3
luizcmarin marked this conversation as resolved.
Show resolved Hide resolved
Loading