Thank you for your interest in contributing to the s3-iam-cosi-driver project. Before you begin, please read through our legal requirements.
All contributors must sign and submit one of the following CLAs before their contributions can be accepted:
If you're contributing as an individual, sign the Individual Contributor License Agreement (ICLA).
If you're contributing on behalf of a corporation, sign the Corporate Contributor License Agreement (CCLA). The CCLA allows a corporation to authorize contributions from its designated employees.
Submit your signed CLA to one of the maintainers listed in MAINTAINERS.md.
After submitting your CLA, all commits must include a DCO sign-off. The Developer Certificate of Origin certifies that you wrote or have the right to submit the code you are contributing.
Add the following sign-off statement to your commits:
Signed-off-by: Your Name <your.email@example.com>
You can add this automatically using:
git commit -sEach source file must include the appropriate license header:
For MIT licensed files (new code):
/*
Copyright (c) 2024 <holder>
Licensed under the MIT License.
*/For Apache 2.0 licensed files (original codebase):
/*
Copyright <holder> All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/-
For new features: Please raise an issue first to discuss your proposal
-
For bug fixes: Please raise an issue to track the fix
-
Fork and Clone
- Fork the repository
- Clone your fork locally
- Add the upstream repository as a remote
-
Create a Branch
- For features:
feature/short-description - For bugs:
fix/short-description - For docs:
docs/short-description
- For features:
-
Make Changes
- Write clear, concise commit messages
- Include DCO sign-off in all commits
- Add tests for new functionality
- Update documentation as needed
-
Submit Pull Request
- Push changes to your fork
- Create a pull request against the main branch
- Fill out the pull request template
- Link any related issues
- Keep changes focused and atomic
- Maintain a clean commit history
- Follow existing code style and conventions
- Include relevant tests
- Update documentation
- GitHub Issues: Bug reports and feature requests
- Pull Requests: Code review discussions
- Project Discussions: General questions and discussions