Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.95 KB

CONTRIBUTING.md

File metadata and controls

40 lines (31 loc) · 1.95 KB

Contributing to FOLIO mod-search

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.

Table of Contents

How to Contribute

Reporting Issues

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.

  1. Search for existing issues: Before creating a new issue, please check if the issue has already been reported.
  2. 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.

Submitting Changes

  1. Create a Branch: Create a new branch for your changes.
    git checkout -b your-branch-name
  2. Make Changes: Make your changes in your branch.
  3. Commit Changes: Commit your changes with a meaningful commit message that will follow Conventional Commit practice .
    git add .
    git commit -m "Your commit message"
  4. Push Changes: Push your changes to the repository.
    git push origin your-branch-name
  5. 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.