diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-02-24 11:53:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 11:53:43 +0100 |
commit | 9e3e4a2eb194a98d02a56d94c83a763e2856364a (patch) | |
tree | 78e389d622cf50569c21b93afde478f27b34d2e5 /.github/CONTRIBUTING.md | |
parent | 822d397804174b1e869805958f379310cabc1124 (diff) | |
download | nextcloud-server-9e3e4a2eb194a98d02a56d94c83a763e2856364a.tar.gz nextcloud-server-9e3e4a2eb194a98d02a56d94c83a763e2856364a.zip |
chore: update readme to show conventional commits requirements
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index f7eb7c1df98..98c93c4a41e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -29,6 +29,13 @@ Thanks for wanting to contribute source code to Nextcloud. That's great! Please read the [Developer Manuals][devmanual] to learn how to create your first application or how to test the Nextcloud code with PHPUnit. +### Conventional Commits + +Please use [Conventional Commits](https://www.conventionalcommits.org) for your commit messages. This helps maintain clarity and consistency across the project, making it easier to understand changes and automate versioning. +``` +feat(files_sharing): allow sharing with contacts +``` + ### Tests In order to constantly increase the quality of our software we can no longer accept pull request which submit un-tested code. @@ -44,9 +51,9 @@ their contribution under the project's license. Please read [contribute/developer-certificate-of-origin][dcofile]. If you can certify it, then just add a line to every git commit message: -```` - Signed-off-by: Random J Developer <random@developer.example.org> -```` +``` +Signed-off-by: Random J Developer <random@developer.example.org> +``` Use your real name (sorry, no pseudonyms or anonymous contributions). If you set your `user.name` and `user.email` git configs, you can sign your |