summaryrefslogtreecommitdiff
path: root/PULL_REQUEST_TEMPLATE.md
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-03-23 10:41:45 -0700
committerJason Smith <jason.smith@xamarin.com>2016-03-23 10:41:45 -0700
commit3c48849881c8aedafa14e118a2a50b50147a3e31 (patch)
tree4f2ca97563912a1988ac49a98d2063568e12afb6 /PULL_REQUEST_TEMPLATE.md
parentd58e26f1f85eee2010cc0648aa3bb73600eab6a5 (diff)
downloadxamarin-forms-3c48849881c8aedafa14e118a2a50b50147a3e31.tar.gz
xamarin-forms-3c48849881c8aedafa14e118a2a50b50147a3e31.tar.bz2
xamarin-forms-3c48849881c8aedafa14e118a2a50b50147a3e31.zip
Create PULL_REQUEST_TEMPLATE.md
Diffstat (limited to 'PULL_REQUEST_TEMPLATE.md')
-rw-r--r--PULL_REQUEST_TEMPLATE.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000..4d385248
--- /dev/null
+++ b/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,29 @@
+### Description of Change ###
+
+Describe your changes here.
+
+### Bugs Fixed ###
+
+- Provide links to bugs here
+
+### API Changes ###
+
+List all API changes here (or just put None), example:
+Added:
+ - string ListView.GroupName { get; set; } //Bindable Property
+ - int ListView.GroupId { get; set; } // Bindable Property
+ - void ListView.Clear ();
+
+Changed:
+ - object ListView.SelectedItem => Cell ListView.SelectedItem
+
+### Behavioral Changes ###
+
+Describe any non-bug related behavioral changes that may change how users app behaves when upgrading to this version of the codebase.
+
+### PR Checklist ###
+
+- [ ] Has tests (if omitted, state reason in description)
+- [ ] Rebased on top of master at time of PR
+- [ ] Changes adhere to coding standard
+- [ ] Consolidate commits as makes sense