Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.81 KB

CONTRIBUTING.md

File metadata and controls

37 lines (30 loc) · 1.81 KB

Contributing to GithubIssues-to-Salesforce

Thank you for considering contributing to GithubIssues-to-Salesforce! I welcome contributions from everyone and appreciate your efforts to improve the project. Please follow the guidelines below to ensure a smooth contribution process.

How to Contribute

Reporting Issues

  1. Check Existing Issues: Before opening a new issue, please check the issue tracker to see if your problem or feature request has already been reported.
  2. Provide Detailed Information: If you are reporting a bug, include a detailed description of the issue, steps to reproduce, and any relevant screenshots or error messages.
  3. Feature Requests: If you have a feature request, please provide a clear description of the feature and how it would be useful.

Submitting Pull Requests

  1. Clone the Repo: Clone the repo
    git clone https://github.com/clr182/GithubIssues-to-Salesforce.git
  2. Create a New Branch: Create a new branch for your changes.
    git checkout -b my-feature-branch
    
  3. Make Your Changes: Implement your changes and write tests if applicable.
  4. Commit Your Changes: Commit your changes with a clear and descriptive message.
    git add .
    git commit -m "Add feature X"
    
  5. Push Your Changes: Push your changes
    git push origin my-feature-branch
    
  6. Create a Pull Request: Open a pull request on the repository and describe the changes you made. Be sure to reference any related issues.

Review Process

  • Review: Your pull request will be reviewed by project maintainers. They may request changes before merging.
  • Feedback: Be open to feedback and be prepared to make adjustments based on the review.