aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2016-04-20 19:31:55 -0400
committerDave Methvin <dave.methvin@gmail.com>2016-04-22 15:09:23 -0400
commit84427591ccffe686f158ce81e5c6ba6694f7da50 (patch)
treebf5df71a64f1705a7cc2b2353ef9201eb20eb6a1
parente5ffcb0838c894e26f4ff32dfec162cf624d8d7d (diff)
downloadjquery-84427591ccffe686f158ce81e5c6ba6694f7da50.tar.gz
jquery-84427591ccffe686f158ce81e5c6ba6694f7da50.zip
Misc: Add issue and pull request templates
Fixes gh-2929 Closes gh-3070
-rw-r--r--.github/ISSUE_TEMPLATE.md21
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md16
2 files changed, 37 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 000000000..b2b19f81f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,21 @@
+<!--
+Feature Requests:
+ Please read https://github.com/jquery/jquery/wiki/Adding-new-features
+ Most features should start as plugins outside of jQuery.
+
+Bug Reports:
+ Note that we only can fix bugs in the latest (1.x, 2.x, 3.x) versions of jQuery.
+ Briefly describe the issue you've encountered
+ * What do you expect to happen?
+ * What acually happens?
+ * Which browsers are affected?
+ Provide a *minimal* test case, see https://webkit.org/test-case-reduction/
+ Use the latest shipping version of jQuery in your test case!
+ We prefer test cases on http://jsbin.com or http://jsfiddle.net
+-->
+
+** Description**
+
+
+** Link to test case **
+
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 000000000..0ec45161f
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,16 @@
+### Summary ###
+<!--
+Describe what this PR does. All but trivial changes (e.g. typos)
+should start with an issue. Mention the issue number here.
+-->
+
+
+### Checklist ###
+Mark an `[x]` for completed items, if you're not sure leave them unchecked and we can assist.
+
+* [ ] All authors have signed the CLA at https://contribute.jquery.com/CLA/
+* [ ] New tests have been added to show the fix or feature works
+* [ ] Grunt build and unit tests pass locally with these changes
+* [ ] If needed, a docs issue/PR was created at https://github.com/jquery/api.jquery.com
+
+Thanks! Bots and humans will be around shortly to check it out.