From 478836bbf418985f4b54633dc33626dc6c611e77 Mon Sep 17 00:00:00 2001 From: Christian Fehmer Date: Wed, 12 Nov 2025 12:34:12 +0100 Subject: [PATCH] docs: Add author name requirement to PR titles (@fehmer) (#7089) --- docs/CONTRIBUTING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index a65217e23..968f9be84 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -27,7 +27,8 @@ Below is a set of general guidelines for different types of changes. ### Pull Request Naming Guidelines -We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for our pull request titles (and commit messages on the master branch). Please follow the guidelines below when naming pull requests. +We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for our pull request titles (and commit messages on the master branch) and also include the author name at the end inside parenthesis. Please follow the guidelines below when naming pull requests. + For types, we use the following: @@ -44,6 +45,12 @@ For types, we use the following: - `revert`: Reverts a previous commit - `chore`: Other changes that don't apply to any of the above +#### Examples + +- `feat: add new feature (@github_username)` +- `impr(quotes): add english quotes (@username)` +- `fix(leaderboard): show user rank correctly (@user1, @user2, @user3)` + ### Theme Guidelines