Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Latest commit

 

History

History
73 lines (49 loc) · 4.39 KB

WORKFLOW.md

File metadata and controls

73 lines (49 loc) · 4.39 KB

Project workflow

This document is based on GOVERNANCE.md. We assume good faith and intend to keep all processes as lightweight as possible but as specific as required. In case of disagreements about anything in this document, GOVERNANCE.md applies.

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC2119.

Git and GitHub terminology are used throughout this document.

Team members and their access to repositories is maintained through GitHub teams. Team maintainers add and remove team members as outlined in GOVERNANCE.md. Team members must have two factor authentication enabled.

Code changes

Proposing changes

Examples of proposed changes are overarching architecture, component design, and specific code or graphical elements. Proposed changes SHOULD cover the big picture and intention, but individual parts SHOULD be split into the smallest possible changes. Changes SHOULD be based on and target the master branch. Depending on size of the proposed change, each change SHOULD be discussed, in increasing order of change size and complexity:

  • Directly in a RR (Pull Request) - this MAY be done, but SHOULD not be the common case.
  • Issue
  • Developer mailing list
  • Design document, shared via Google Docs, accessible to at least all team members.

Significant changes MUST be discussed and agreed upon with the relevant subsystem maintainers.

Merging PRs (Pull Requests)

Depending on the size and complexity of a PR, different requirements MUST be applied. Any team member contributing substantially to a PR MUST NOT count against review requirements. Commits MUST be merged into master using PRs. They MUST NOT be merged into master directly.

  • Every merge MUST be approved by at least one team member.
  • Non-trivial changes MUST be approved by at least
    • two team members, or
    • one subsystem maintainer.
  • Significant changes MUST be approved by at least
    • two team members, AND
    • the relevant subsystem maintainer.

PRs MUST be reviewed and approved via GitHub’s review system.

  • Reviewers MAY write comments if approving
  • Reviewers MUST write comments if rejecting a PR or if requesting changes.

Once a PR is approved as per above, any team member MAY merge the PR.

Release workflow

Branch structure

This project uses trunk-based development.

In particular, we found that the following principles match how we work:

  • Master and release branches MUST always build without failure.
  • Branches SHOULD be merged often. Larger changes SHOULD be activated with feature flags until they are ready. Long-lived development branches SHOULD be avoided.
  • Changes MAY be enabled by default once they are in a complete state
  • Changes which span multiple PRs MUST be described in an overarching issue or Google Doc.

Releases

Releases MUST follow Semantic Versioning in naming and SHOULD follow Semantic Versioning as closely as reasonably possible for non-library software.

Release branches MUST be split from the following branches.

  • MAJOR release branches MUST be based on master.
  • MINOR release branches MUST be based on master.
  • PATCH release branches MUST be split from the relevant MINOR release branch’s most current PATCH

Security releases follow the same process but MUST be prepared in secret. Security releases MUST NOT include changes which are not related to the security fix. Normal release processes MUST accommodate the security release process. SECURITY.md MUST be followed.

PRs intended for inclusion in the next PATCH release MUST be labeled with cherry-pick-needed so they can be picked up by automated release tooling.

Releases follow the following cadence

  • MAJOR: Yearly
  • MINOR: Every 4-6 weeks
  • PATCH: As needed

Releases SHOULD NOT be delayed by pending changes.

Releases MUST be coordinated with the relevant subsystem maintainers.