Thank you for considering contributing to FOLIO mod-search! Your contributions are valuable and help us improve the project. Please take a moment to review this guide before making your contribution.
If you encounter bugs, issues, or have any suggestions for improvements, please open an issue on JIRA mod-search project. Provide as much detail as possible to help us understand and address the problem.
- Search for existing issues: Before creating a new issue, please check if the issue has already been reported.
- Create a new issue: If the issue does not exist, create a new issue using the provided template. Include a clear and descriptive title, a detailed description, steps to reproduce the issue, and any other relevant information.
- Create a Branch: Create a new branch for your changes.
git checkout -b your-branch-name
- Make Changes: Make your changes in your branch.
- Commit Changes: Commit your changes with a meaningful commit message that will follow Conventional Commit practice .
git add . git commit -m "Your commit message"
- Push Changes: Push your changes to the repository.
git push origin your-branch-name
- Create a Pull Request: Open a pull request from your branch to the
master
branch of the original repository. Follow Pull Request Template to create a description.