Create PULL_REQUEST_TEMPLATE.md
authorJason Smith <jason.smith@xamarin.com>
Wed, 23 Mar 2016 17:41:45 +0000 (10:41 -0700)
committerJason Smith <jason.smith@xamarin.com>
Wed, 23 Mar 2016 17:41:45 +0000 (10:41 -0700)
PULL_REQUEST_TEMPLATE.md [new file with mode: 0644]

diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md
new file mode 100644 (file)
index 0000000..4d38524
--- /dev/null
@@ -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