The golden rule
Commit and push to the feature branches daily. Use pull requests (in the draft state until they are ready for review) to show WIP. Saying "I'm coding feature X" on the daily call without pushed commits is not okay.
Make sure your git user.name
is set, and user.email
is set to your corporate (if you are Perconian) or personal email, i.e. john.doe@percona.com.
Use topic branches in the same repository instead of GitHub forks if you have such permissions.
Name topic branches like this: PMM-1234-short-description
. Always start with PMM-XXXX
or SAAS-XXXX
. Never omit a short description. Separate words with dashes, not underscore. Use only lowercase letters.
If you are community contributor and there is no ticket exists, either create one or just use short-description
style for your forked repo branch.
Every commit message should use this commit template:
PMM-XXXX Short summary up to 50 characters.
Optional 72-character wrapped longer description.
There should be a blank line between short summary and longer description. Final dot in the title is optional – if you hate it, drop it :)
While addressing review comments push the requested changes as a new commit instead of amending the original commit and force pushing to Github.
- Before Creating or updating PR always run linters and tests locally.
- Every PR should follow the template of a commit message.
- If PR provides a prototype or a proof-of-concept, PR should be draft so it is not accidentally merged.
- Start PR as draft ASAP to let everyone see the job you are doing.
- Check-list of things to do prior to submitting a PR for review:
- All tests in the PR pass.
- Clean up your code removing unnecessary tokens, code which is commented out, etc.
- All required lint rules pass.
- New tests are written if it's possible for new changes.
- FB exists and is up-to-date.
- All tests in FB pass.
- Don't write unit tests that communicate with external services those tests belong in a separate API tests repo (This point might only be relevant to backend developers).
- Rules for merging a PR:
- All required checks must pass.
- The reviewers (minimum 2) are set as makes sense for the code (DevOps, BE, FE, QA), and all need to approve the code after review. Should the person assigned as a reviewer not be able to review the PR in due time, they must un-assign themselves as a a reviewer of the said PR.
- If change requests were made, all changes need to be resolved and re-approved by the original reviewers.
- Task should have Ready for merge status
- If all conditions for a successful merge are met (checks pass, code reviewed and approved, changes resolved and re-approved), ONLY then the PR can me merged:
- If an author has write permissions. An author should merge the PR.
- If an author doesn't have a write permissions, then author should ask someone with write permissions to merge.
- If required checks fail for a confusing reason or some non-required checks fail for a long time, ping the appropriate dev channel.
- A PR should be merged with the "Squash and Merge" button (the code owner should set this as the only option in the repository settings).
- Never leave PRs fully approved, unassigned, and not merged.
- Tasks with several PRs should be merged with minimum time interval between the merges.
- Delete the branch after merging the PR (note: this step may be automated for some of our repos, i.e. a bot deletes the branch right after the merge).
- If you need to re-request a review from someone, please use GitHub feature as displayed in Figure 1 below (use case: I made some changes after the PR was reviewed so I want to request another review from the same reviewer). Ping reviewer if it's not reviewed in 1 working day.
- If you open a Pull Request to fix a Bug - put an explanation in the Long Description about the Bug. It may contain information about how it affects the component. Also, it's good to have short references on how the problem is solved (now applicable only to mongodb_exporter and proxysql_exporter)
- If you implement a new Feature or make an Improvement or Fix a Bug - add a link in the Long Description to the related PR for Feature Build.