Merge pull request #14587 from mauriciofauth/issue-templates

Update GitHub templates
This commit is contained in:
Maurício Meneghini Fauth 2018-08-26 03:54:20 -03:00 committed by GitHub
commit ef225a2251
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 89 additions and 31 deletions

View File

@ -1,26 +0,0 @@
### Steps to reproduce
1.
2.
3.
### Expected behaviour
Tell us what should happen
### Actual behaviour
Tell us what happens instead
### Server configuration
**Operating system**:
**Web server:**
**Database:**
**PHP version:**
**phpMyAdmin version:**
### Client configuration
**Browser:**
**Operating system:**

42
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,42 @@
---
name: Bug report
about: Create a report to help us improve
---
### Describe the bug
A clear and concise description of what the bug is.
### To Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
### Expected behavior
A clear and concise description of what you expected to happen.
### Screenshots
If applicable, add screenshots to help explain your problem.
### Server configuration
- Operating system:
- Web server:
- Database version:
- PHP version:
- phpMyAdmin version:
### Client configuration
- Browser:
- Operating system:
### Additional context
Add any other context about the problem here.

View File

@ -0,0 +1,23 @@
---
name: Feature request
about: Suggest an idea for phpMyAdmin
---
### Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
### Describe the solution you'd like
A clear and concise description of what you want to happen.
### Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
### Additional context
- phpMyAdmin version:
Add any other context or screenshots about the feature request here.

View File

@ -0,0 +1,11 @@
---
name: Security report
about: Disclose a security vulnerability responsibly by first reporting it to us privately
---
Security problems should not be reported here.
See our security page: https://www.phpmyadmin.net/security/
Thanks for your help!

View File

@ -1,6 +1,14 @@
Before submitting pull request, please check that every commit:
### Description
- [ ] Has proper Signed-Off-By
- [ ] Has commit message which describes it
- [ ] Is needed on it's own, if you have just minor fixes to previous commits, you can squash them
- [ ] Any new functionality is covered by tests
Please describe your pull request.
Fixes #
Before submitting pull request, please review the following checklist:
- [ ] Make sure you have read our [CONTRIBUTING.md](https://github.com/phpmyadmin/phpmyadmin/blob/master/CONTRIBUTING.md) document.
- [ ] Make sure you are making a pull request against the correct branch. For example, for bug fixes in a released version use the corresponding QA branch and for new features use the _master_ branch. If you have a doubt, you can ask as a comment in the bug report or on the mailing list.
- [ ] Every commit has proper `Signed-off-by` line as described in our [DCO](https://github.com/phpmyadmin/phpmyadmin/blob/master/DCO). This ensures that the work you're submitting is your own creation.
- [ ] Every commit has a descriptive commit message.
- [ ] Every commit is needed on its own, if you have just minor fixes to previous commits, you can squash them.
- [ ] Any new functionality is covered by tests.