You need to give the PR a sensible title
The description needs to contain some context of the PR. For example:
Update the homepage sidebar copy.
You need to include the link to the ticket in Asana/Trello/Jira which this PR is for.
All PR must be assigned to the reviewer.
Make sure you have marked the PR to close the branch automatically once merged (checkbox when editing PR).
Name your branches following our company conventions:
- Needs to have a prefix:
feature/
- new feature / general ticketsbugfix/
- general bug fixhotfix/
- bug fix which may not have been thoroughly tested before moving to prod
- Needs to have a descriptive title. E.g.
f-35
is not acceptable. You might call itfeature/update-chomepage-copy
instead.
Give commits sensible descriptions / messages. For example, this is not acceptable:
git commit -m "testing"
or
git commit -m "udpate"
You can't fix this now but don't do it again.
Commit messages should answer the question; "If I apply this commit/patch it will ________________.". For example:
git commit -m "update logo on jobs single page"
Please fix the merge conflicts on the Pull Request