From 012529e0f5195ab0454ac3ffd2800d4a15bd5c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Gim=C3=A9nez?= Date: Fri, 20 Sep 2024 12:26:51 +0200 Subject: [PATCH] chore: Review contribute guidelines (#790) * chore: Enforce contribute to development branch message * fix: Remove unwanted title. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ced61c1e5..caf31d4f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,7 +19,7 @@ Welcome to Issuer Node! We're thrilled to have you here. Before you get started, **Requesting Features**: If you have ideas for new features or enhancements, please submit a feature request on GitHub. -**Submitting Changes**: Fork the repository, make your changes, and submit a pull request. Be sure to follow the guidelines outlined below. +**Submitting Changes**: Fork the repository, make your changes, and submit a pull request. The `develop` branch is the default branch for development. Pull request to `main` branch only will be accepted for hotfixes or releases. Please follow the guidelines outlined below. ## Getting Started @@ -41,7 +41,7 @@ Submit concise and focused pull requests with clear descriptions. Follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) specification both for the commits and PR names. -Use develop as the base and target branch for pull requests. +Use `develop` as the base and target branch for pull requests. Develop is our base branch for development. We create feature branches from develop and merge them back into develop when the feature is complete. From time to time we integrate the `develop` branch into `main`. Be responsive to feedback and address any review comments promptly.