/ .github / pull_request_template.md
pull_request_template.md
 1  ## General Changes
 2  
 3  - Fixes XYZ bug
 4  - Adds XYZ feature
 5  - …
 6  
 7  ## Developer Notes
 8  
 9  Add any notes here that may be helpful for reviewers.
10  
11  ---
12  
13  ## Reviewer Checklist
14  
15  Please ensure you, as the reviewer(s), have gone through this checklist to ensure that the code changes are ready to ship safely and to help mitigate any downstream issues that may occur.
16  
17  - [ ]  End-to-end tests are passing without any errors
18  - [ ]  Code changes do not significantly increase the application bundle size
19  - [ ]  If there are new 3rd-party packages, they do not introduce potential security threats
20  - [ ]  If there are new environment variables being added, they have been added to the `.env.example` file as well as the pertinant `.github/actions/*` files
21  - [ ]  There are no CI changes, or they have been approved by the DevOps and Engineering team(s)