From e79866e9fe3045bf1d30fcee74fc932870ac2c1b Mon Sep 17 00:00:00 2001 From: jtbx Date: Sun, 29 Oct 2023 23:35:24 +0100 Subject: [PATCH] Docs: Add contributing guidlines --- CONTRIBUTING.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..01fde5a --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,26 @@ +# Contributing + +Please stick to the following recommendations when making contributions to this repo. + +## General + +- Each commit should be logically self-contained and shall "compile" without warnings or errors +- Please split pure refactoring or formatting changes from features + + +## Commit Message Format + +A commit message consists of the header line and a bunch of additional lines explaining the changes. + +The header line shall use the following base format: + +``` +topic: Short description +``` + +If the commit is a pure refactoring or code-formatting change, it shall have the prefix `[TIDY]` and bugfixes shall have the prefix `[FIX]`. + +Examples: + +- `[TIDY] CI: Move common parts to own job` +- `Style: Make navbar sticky`