Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-08-23 07:42:52 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-08-26 09:45:25 +0300
commitbae1c8d955389e3cf42f4036e9495f5ad624fdb4 (patch)
tree683f726757a88dd4e81ea7cedf6151f591c163eb /.github/PULL_REQUEST_TEMPLATE.md
parent0913246f63daaf6ea655be9455d3735873556d53 (diff)
Update GitHub templates
- Add support for multiple issue templates - Update pull request template Based on https://help.github.com/articles/creating-issue-templates-for-your-repository/ [CI skip] Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to '.github/PULL_REQUEST_TEMPLATE.md')
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md18
1 files changed, 13 insertions, 5 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 3c47317f09..bc6e3381a8 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -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.