From 3c48849881c8aedafa14e118a2a50b50147a3e31 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Wed, 23 Mar 2016 10:41:45 -0700 Subject: [PATCH] Create PULL_REQUEST_TEMPLATE.md --- PULL_REQUEST_TEMPLATE.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..4d38524 --- /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 -- 2.7.4