Create PULL_REQUEST_TEMPLATE.md
[platform/upstream/xamarin-forms.git] / PULL_REQUEST_TEMPLATE.md
1 ### Description of Change ###
2
3 Describe your changes here.
4
5 ### Bugs Fixed ###
6
7 - Provide links to bugs here
8
9 ### API Changes ###
10
11 List all API changes here (or just put None), example:
12 Added:
13  - string ListView.GroupName { get; set; } //Bindable Property
14  - int ListView.GroupId { get; set; } // Bindable Property
15  - void ListView.Clear ();
16
17 Changed:
18  - object ListView.SelectedItem => Cell ListView.SelectedItem
19
20 ### Behavioral Changes ###
21
22 Describe any non-bug related behavioral changes that may change how users app behaves when upgrading to this version of the codebase.
23
24 ### PR Checklist ###
25
26 - [ ] Has tests (if omitted, state reason in description)
27 - [ ] Rebased on top of master at time of PR
28 - [ ] Changes adhere to coding standard
29 - [ ] Consolidate commits as makes sense