From 682ce7839a64a9e0f589e8fd4849ffe0d76b9934 Mon Sep 17 00:00:00 2001 From: Lucas Franceschino Date: Mon, 7 Oct 2024 10:16:54 +0200 Subject: [PATCH] feat(contributing): add a `regressions` section --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3437aedc..76fab47c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,6 +39,10 @@ While the prerequisites above must be satisfied prior to having your pull reques It is fine to force-push either (1) before asking for a review or (2) after PR approval, just before merging. Otherwise, in between two reviews, please do not force-push. +### Regressions + +When a PR introduces a regression, a fix should be submitted in a +window of 2 days, otherwise the PR will be reverted. ## Rules for the OCaml code - Never use the OCaml standard library, always use [`base`](https://v3.ocaml.org/p/base/latest/doc/index.html), [`core`](https://v3.ocaml.org/p/core/latest/doc/index.html) or [`stdlib`](https://v3.ocaml.org/p/stdlib/latest/doc/index.html) instead.