Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 2.3 KB

CONTRIBUTING.md

File metadata and controls

56 lines (39 loc) · 2.3 KB

Contributing

Follow these guidelines if you'd like to contribute to the project!

Please note we have a Code of Conduct, please follow it in all your interactions with the project.


Questions & concerns

If you have any questions about using or developing for this project, reach out to us on slack in #d9launch channel.

Issues & bugs

Submit an issue or pull request with a fix if you find any bugs in the project. See below for instructions on sending in pull requests, and be sure to reference the code style guide first!

When submitting an issue or pull request, make sure you're as detailed as possible and fill in all answers to questions asked in the templates. For example, an issue that simply states "X/Y/Z isn't working!" will be closed.

Feature requests

Submit an issue to request a new feature. If this is a major change, please reach to us on slack first.

Submitting pull requests

Before you do anything, make sure you check the current list of pull requests to ensure you aren't duplicating anyone's work. Then, do the following:

  1. Fork the repository and make your changes in a git branch: git checkout -b my-branch
  2. Read and follow the code style guidelines.
  3. Make sure your feature or fix doesn't break the project! Test thoroughly.
  4. Commit your changes, and be sure to leave a detailed commit message.
  5. Push your branch to your forked repo on GitHub: git push origin my-branch
  6. Submit a pull request and hold tight!
  7. Wait for feedback of the maintainers. We will reach out in the pull request and work with you to get the pull request merged.

Code style

We're following Drupal code style. If you are using lando then simply run lando phpcs path/to/your/file. If you're not using lando, then please check following documentation

This contribution guide was forked and modified from https://github.com/tylucaskelley/github-templates/blob/master/CONTRIBUTING.md.