Conventional Commits
This project uses conventional commits for Pull Request titles, as they are used as the commit names on the main branch. What are conventional commits? In the words of the official documentation:
The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of.
The PR titles should thus take the general form:
<type>[optional scope]: <description>
An example would be:
fix(types): make all floats double
Valid types for Caml are as follows:
build
: Changes that affect the build system or external dependenciesci
: Changes to our CI/CD configuration files and scriptsdocs
: Documentation only changesfeat
: A new featurefix
: A bug fixperf
: A code change that improves performancerefactor
: A code change that neither fixes a bug nor adds a featurestyle
: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)test
: Adding missing tests or correcting existing testsrevert
: Reverting code changes to a previous statechore
: Routine tasks that don’t fit in any of the above
We use the following regex to validate PR titles (test it!:
^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|release)(.+)?(!)?:\ .+
Back to top