This document is a work in progress. If you notice areas for improvement, please feel free to update this guide and submit a pull request!
- Submitting a Pull Request
- Ensuring Your Pull Request Gets Accepted
- The Review Process
- Work in Progress Pull Requests
- Triaging Issues
To contribute code to MLE Agent, you need to open a pull request. The pull request will be reviewed by the community before it is merged into the core project. Generally, a pull request should be submitted when a unit of work is complete, but you can also share ideas or get feedback through a work in progress (WIP) pull request (learn more).
-
Familiarize yourself with the project by reading our "Getting Started Guide".
-
Follow our coding standards to ensure consistency across the project.
-
Review our testing guidelines to understand the project's automated testing framework.
-
Set up your development environment to make sure you have everything you need to contribute.
-
Make sure you have the latest version of the code by syncing your fork with the main repository:
git remote add upstream https://github.com/MLSysOps/MLE-agent.git git fetch upstream git merge upstream/main
-
Create a branch for the code you will be working on:
git checkout -b my-new-feature
-
Write your code, making sure to include tests as needed.
-
Commit your changes with a meaningful commit message:
git commit -m "Description of the changes"
-
Push your changes to your fork:
git push origin my-new-feature
-
Open a pull request on GitHub. Make sure to include a detailed description of the changes you made and any relevant context.
- Make sure your code follows the coding standards outlined in our code guidelines -- we use flake8 to enforce these standards.
- Write tests for any new features or significant changes.
- Ensure all tests pass before submitting your pull request.
- Be responsive to feedback from reviewers.
Once you submit a pull request, it will be reviewed by the maintainers. They might request changes or provide feedback. The goal is to ensure the code is high quality and aligns with the project's goals.
If you want feedback on your work before it's complete, you can open a WIP pull request. This allows you to get input from others on your approach or on specific parts of your code.
When you're ready for a full review, you can mark the pull request as MRG
for review by removing the WIP
label.
If you're not ready to submit code but still want to contribute, you can help by triaging issues. This involves confirming bugs, providing additional information, or suggesting ways to reproduce issues.
Thank you for your interest in contributing to MLE Agent!