Refactor PR template

This commit is contained in:
Erin Song 2024-10-03 14:39:42 -07:00
parent f10b4d8285
commit ff155fd4e7
No known key found for this signature in database
2 changed files with 24 additions and 34 deletions

View file

@ -1,6 +1,21 @@
# Code Review
## Code Review
After creating a pull request, pull request submitters should:
- Add at least 2 developers as PR reviewers (only 1 will need to approve)
- Message on Slack or in standup to notify the team that a PR is ready for review
- If any model was updated to modify/add/delete columns, run makemigrations and commit the associated migrations file.
- Add at least 2 developers as PR reviewers (only 1 will need to approve).
- Message on Slack or in standup to notify the team that a PR is ready for review.
- If any model was updated to modify/add/delete columns, run makemigrations and commit the associated migrations file.
- If any updated dependencies on Pipfile, also update dependencies in requirements.txt.
## Pull Requests for User-facing changes
Code changes on user-facing features (excluding content updates) require approval from at least one developer and one designer.
When making user-facing changes, test that your changes work on multiple browsers including Chrome, Microsoft Edge, Firefox, and Safari.
## Coding standards
(The Coding standards section may be moved to a new code standards file in a future ticket.
For now we're simply moving PR template content into the code review document for consolidation)
### Plain language
All functions and methods should use plain language.
TODO: Description and examples in code standards ticket.