Skip to content
This repository has been archived by the owner on Feb 13, 2021. It is now read-only.

Latest commit

 

History

History
48 lines (42 loc) · 5.59 KB

PR_REVIEW.md

File metadata and controls

48 lines (42 loc) · 5.59 KB

Summary

We take PR review seriously. Please read https://medium.com/@mrjoelkemp/giving-better-code-reviews-16109e0fdd36#.xa8lc4i23 to understand how a PR review should be conducted. Be rational and strict in your review, make sure you understand exactly what the submitter's intent is. Anyone in the community can review a PR, but a Prebid Org member is also required. A Prebid Org member should take ownership of a PR and do the initial review.

If the PR is for a standard bid adapter or a standard analytics adapter, just the one review from a core member is sufficient. The reviewer will check against required conventions and may merge the PR after approving and confirming that the documentation PR against prebid.org is open and linked to the issue.

For modules and core platform updates, the initial reviewer should request an additional team member to review as a sanity check. Merge should only happen when the PR has 2 LGTM from the core team and a documentation PR if required.

General PR review Process

  • Checkout the branch (these instructions are available on the github PR page as well).
  • Verify PR is a single change type. Example, refactor OR bugfix. If more than 1 type, ask submitter to break out requests.
  • Verify code under review has at least 80% unit test coverage. If legacy code has no unit test coverage, ask for unit tests to be included in the PR.
  • Verify tests are green in Travis-ci + local build by running gulp serve | gulp test
  • Verify no code quality violations are present from linting (should be reported in terminal)
  • Review for obvious errors or bad coding practice / use best judgement here.
  • If the change is a new feature / change to core prebid.js - review the change with a Tech Lead on the project and make sure they agree with the nature of change.
  • If the change results in needing updates to docs (such as public API change, module interface etc), add a label for "needs docs" and inform the submitter they must submit a docs PR to update the appropriate area of Prebid.org before the PR can merge. Help them with finding where the docs are located on prebid.org if needed.
  • If all above is good, add a LGTM comment and request 1 additional core member to review.
  • Once there is 2 LGTM on the PR, merge to master
  • Ask the submitter to add a PR for documentation if applicable.
  • Add a line into the draft release notes for this submission. If no draft release is available, create one using this template

New Adapter or updates to adapter process

  • Follow steps above for general review process. In addition, please verify the following:
  • Verify that bidder has submitted valid bid params and that bids are being received.
  • Verify that bidder is not manipulating the prebid.js auction in any way or doing things that go against the principles of the project. If unsure check with the Tech Lead.
  • Verify that the bidder is being as efficient as possible, ideally not loading an external library, however if they do load a library it should be cached.
  • Verify that code re-use is being done properly and that changes introduced by a bidder don't impact other bidders.
  • If the adapter being submitted is an alias type, check with the bidder contact that is being aliased to make sure it's allowed.
  • If the adapter is triggering any user syncs make sure they are using the user sync module in the Prebid.js core.
  • Requests to the bidder should support HTTPS
  • Responses from the bidder should be compressed (such as gzip, compress, deflate)
  • Bid responses may not use JSONP: All requests must be AJAX with JSON responses
  • All user-sync (aka pixel) activity must be registered via the provided functions
  • Adapters may not use the $$PREBID_GLOBAL$$ variable
  • All adapters must support the creation of multiple concurrent instances. This means, for example, that adapters cannot rely on mutable global variables.
  • Adapters may not globally override or default the standard ad server targeting values: hb_adid, hb_bidder, hb_pb, hb_deal, or hb_size, hb_source, hb_format.
  • After a new adapter is approved, let the submitter know they may open a PR in the headerbid-expert repository to have their adapter recognized by the Headerbid Expert extension. The PR should be to the bidder patterns file, adding an entry with their adapter's name and the url the adapter uses to send and receive bid responses.

Ticket Coordinator

Each week, Prebid Org assigns one person to keep an eye on incoming issues and PRs. That person should:

  • Review issues and PRs at least once per weekday for new items.
  • For PRs: assign PRs to individuals on the PR review list. Try to be equitable -- not all PRs are created equally. Use the "Assigned" field and add the "Needs Review" label.
  • For Issues: try to address questions and troubleshooting requests on your own, assigning them to others as needed.
  • Issues that are questions or troubleshooting requests may be closed if the originator doesn't respond within a week to requests for confirmation or details.
  • Issues that are bug reports should be left open and assigned to someone in PR rotation to confirm or deny the bug status.
  • It's polite to check with others before assigning them large tasks.
  • If possible, check in on older items and see if they can be unstuck.