Nix/maintainers
Eelco Dolstra 0070400809 maintainers/release-notes: Include changelog-d
Otherwise it quietly generates an empty rl-<version>.md
2024-01-29 17:13:48 +01:00
..
README.md Elaborate what the monthly assignments status check entails 2024-01-22 08:38:52 -05:00
backporting.md Apply suggestions from code review 2023-02-08 00:24:28 +01:00
release-notes maintainers/release-notes: Include changelog-d 2024-01-29 17:13:48 +01:00
release-process.md Update release-process.md 2024-01-29 17:12:22 +01:00
upload-release.pl flake.nix: Use `config` not `system` for cross so we can be a bit more precise 2023-12-11 12:31:27 -05:00

README.md

Nix maintainers team

Motivation

The team's main responsibility is to guide and direct the development of Nix and ensure that the code is in good shape.

We aim to achieve this by improving the contributor experience and attracting more maintainers that is, by helping other people contributing to Nix and eventually taking responsibility in order to scale the development process to match users' needs.

Objectives

  • It is obvious what is worthwhile to work on.
  • It is easy to find the right place in the code to make a change.
  • It is clear what is expected of a pull request.
  • It is predictable how to get a change merged and released.

Tasks

  • Establish, communicate, and maintain a technical roadmap
  • Improve documentation targeted at contributors
    • Record architecture and design decisions
    • Elaborate contribution guides and abide to them
    • Define and assert quality criteria for contributions
  • Maintain the issue tracker and triage pull requests
  • Help contributors succeed with pull requests that address roadmap milestones
  • Manage the release lifecycle
  • Regularly publish reports on work done
  • Engage with third parties in the interest of the project
  • Ensure the required maintainer capacity for all of the above

Members

  • Eelco Dolstra (@edolstra) Team lead
  • Théophane Hufschmitt (@thufschmitt)
  • Valentin Gagarin (@fricklerhandwerk)
  • Thomas Bereknyei (@tomberek)
  • Robert Hensing (@roberth)
  • John Ericson (@Ericson2314)

Meeting protocol

The team meets twice a week:

  • Discussion meeting: Fridays 13:00-14:00 CET

    1. Triage issues and pull requests from the No Status column (30 min)
    2. Discuss issues and pull requests from the To discuss column (30 min). Once a month, each team member checks the Assigned column for prs/issues assigned to them, to either
      • unblock it by providing input
      • mark it as draft if it is blocked on the contributor
      • escalate it back to the team by moving it to To discuss, and leaving a comment as to why the issue needs to be discussed again.
  • Work meeting: Mondays 13:00-15:00 CET

    1. Code review on pull requests from In review.
    2. Other chores and tasks.

Meeting notes are collected on a collaborative scratchpad. Notes on issues and pull requests are posted as comments and linked from the meeting notes, so they are easy to find from both places. All meeting notes are published on Discourse under the Nix category.

Project board protocol

The team uses a GitHub project board for tracking its work.

Items on the board progress through the following states:

No Status

During the discussion meeting, the team triages new items. To be considered, issues and pull requests must have a high-level description to provide the whole team with the necessary context at a glance.

On every meeting, at least one item from each of the following categories is inspected:

  1. critical
  2. security
  3. regression
  4. bug
  5. tests of existing functionality

Team members can also add pull requests or issues they would like the whole team to consider. To ensure process quality and reliability, all non-trivial pull requests must be triaged before merging.

If there is disagreement on the general idea behind an issue or pull request, it is moved to To discuss. Otherwise, the issue or pull request in questions get the label idea approved. For issues this means that an implementation is welcome and will be prioritised for review. For pull requests this means that:

  • Unfinished work is encouraged to be continued.
  • A reviewer is assigned to take responsibility for getting the pull request merged. The item is moved to the Assigned column.
  • If needed, the team can decide to do a collarorative review. Then the item is moved to the In review column, and review session is scheduled.

What constitutes a trivial pull request is up to maintainers' judgement.

To discuss

Pull requests and issues that are deemed important and controversial are discussed by the team during discussion meetings.

This may be where the merit of the change itself or the implementation strategy is contested by a team member. Whenever the discussion opens up questions about the process or this team's goals, this may indicate that the change is too large in scope. In that case it is taken off the board to be reconsidered by the author or broken down into smaller pieces that are less far-reaching and can be reviewed independently.

As a general guideline, the order of items to discuss is determined as follows:

  • Prioritise pull requests over issues

    Contributors who took the time to implement concrete change proposals should not wait indefinitely.

  • Prioritise fixing bugs and testing over documentation, improvements or new features

    The team values stability and accessibility higher than raw functionality.

  • Interleave issues and PRs

    This way issues without attempts at a solution get a chance to get addressed.

In review

Pull requests in this column are reviewed together during work meetings. This is both for spreading implementation knowledge and for establishing common values in code reviews.

When the overall direction is agreed upon, even when further changes are required, the pull request is assigned to one team member. If significant changes are requested or reviewers cannot come to a conclusion in reasonable time, the pull request is marked as draft.

Assigned

One team member is assigned to each of these pull requests. They will communicate with the authors, and make the final approval once all remaining issues are addressed.

If more substantive issues arise, the assignee can move the pull request back to To discuss or In review to involve the team again.

Flowchart

The process is illustrated in the following diagram:

flowchart TD
    discuss[To discuss]

    review[To review]

    New --> |Disagreement on idea| discuss
    New & discuss --> |Consensus on idea| review

    review --> |Consensus on implementation| Assigned

    Assigned --> |Implementation issues arise| review
    Assigned --> |Remaining issues fixed| Merged