Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 1.76 KB

patching.md

File metadata and controls

30 lines (28 loc) · 1.76 KB

Patch Acceptance Process

  1. PRs that change or add behavior are not accepted without being tied to an issue. Most fixes, even if you think they are obvious, require an issue too. Almost every change breaks someone who has depended on the behavior, even broken behavior.
  2. Significant changes need a design document. Please create an issue describing the proposed change, and post a link to it to rules-pkg-discuss@googlegroups.com. Wait for discussion to come to agreement before proceeding.
  3. Prepare a git commit that implements the feature. Don't forget to add tests.
  4. Ensure you've signed a Contributor License Agreement.
  5. Send us a pull request on GitHub. If you're new to GitHub, read about pull requests. Note that we restrict permissions to create branches on the main repository, so you will need to push your commit to your own fork of the repository.
  6. Wait for a repository owner to assign you a reviewer. We strive to do that within 4 business days, but it may take longer. If your review gets lost you can escalate by sending a mail to bazel-dev@googlegroups.com.
  7. Work with the reviewer to complete a code review. For each change, create a new commit and push it to make changes to your pull request.
  8. A maintainer will approve the PR and merge it.

For further information about working with Bazel and rules in general:

  1. Read the Bazel governance plan.
  2. Read the contributing to Bazel guide.