Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add reviewer guideline #2507

Merged
merged 8 commits into from
May 30, 2024
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions docs/contributing/reviewer-guideline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# Guideline for the Pull Request reviewers

This document serves as a guideline for those reviewing Pull Requests.

This guidline is intended for internal developers. A separate guideline for external contributors is planned.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

## Purpose

The purpose of this guideline is to clarify what reviewers should be aware of and to optimize communication, thereby facilitating efficient development of Vald.

## Preparation

This guideline assumes that the content of the Pull Request is appropriate.

Consider splitting the Pull Request if the changes are extensive, have multiple intentions, or if the tests are insufficient. This makes it easier to review.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

Regarding the amount of change, opinions may vary, but in this project, we aim to keep the implementation of logic under 1000 lines, excluding automatically generated code such as Protocol Buffers.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

## Review request

In this project, merging a Pull Request requires approval from two people. If you want a specific person to review, assign them explicitly; otherwise, assign vdaas/maintainer for a random assignment.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

### Request notification

People may notice requests through different means, but in this project, we prioritize the following methods of communication:
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

1. Speak on Zoom if it is during business hours and the reviewer is available on Zoom; we often talk directly.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
1. Send a mention on Slack If the reviewer is not on Zoom, we send a mention on Slack.
1. Email from GitHub An email is automatically sent when someone is assigned.

If the reviewer does not notice the request, we follow the same priority for re-notifying.

#### When Requested for Review

Unless there are high-priority issues, you are in a meeting, or deeply focused on development, start the review immediately.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

## Approve condition

- The content of the Pull Request is understood.
- The content can be understood at a glance.
- If it cannot be understood at a glance, request additional comments.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- There are no deficiencies in the test cases.
- The quality is suitable for release.
- Compatibility
- Security
- Performance

Regarding quality, while there is always room for improvement, if the quality is sufficient for release, it is acceptable to approve. If there is potential for improvement, suggest it in the comments, and let the implementer decide whether to address it in the same Pull Request or a separate one.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
kmrmt marked this conversation as resolved.
Show resolved Hide resolved

### What Reviewers Should Do

- If the title or description is unclear, ask questions before reviewing the code.
- If any part of the code is not understood after a brief review, ask for clarification or additional comments instead of trying to understand it yourself.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- Verify if the test cases are sufficient.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- Approve immediately if there are no comments.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- If interrupted, respond even if the review is incomplete.
- Ignore other reviewers' comments.

### What Reviewers Should Not Do

- Try to decipher something that is not immediately understandable.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- Close the browser or tab or start something else if it is not understood.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- Attempt to verify the implementation in detail.

### Communication Methods

All communications do not need to be completed on GitHub. Using Slack or Zoom can make the review process more efficient.

The following criteria often determine the choice of communication tool:

- On GitHub Mainly used for specific questions or comments about the code. If the exchange is unsuitable for comments, use Slack or Zoom.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- On Slack, used for brief exchanges. If the discussion is likely to be lengthy or complex, switch to Zoom.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
- On Zoom Used when more complex communication is necessary.

Regardless of where communication takes place, ensure that the results are documented on GitHub or in the code as a record of the communication.

## Effect measurement

Once a month, a report is created at [Vald Issues](https://github.com/vdaas/vald/issues).

This report includes the time taken from when a Pull Request is opened to when it is merged and a summary of this data. Regularly reflect on this information.
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
kmrmt marked this conversation as resolved.
Show resolved Hide resolved
Loading