Update 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
13 Added:
14  - string ListView.GroupName { get; set; } //Bindable Property
15  - int ListView.GroupId { get; set; } // Bindable Property
16  - void ListView.Clear ();
17
18 Changed:
19  - object ListView.SelectedItem => Cell ListView.SelectedItem
20
21 ### Behavioral Changes ###
22
23 Describe any non-bug related behavioral changes that may change how users app behaves when upgrading to this version of the codebase.
24
25 ### PR Checklist ###
26
27 - [ ] Has tests (if omitted, state reason in description)
28 - [ ] Rebased on top of master at time of PR
29 - [ ] Changes adhere to coding standard
30 - [ ] Consolidate commits as makes sense