Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.93 KB

File metadata and controls

55 lines (37 loc) · 1.93 KB

Contributing

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


Table of contents

Read through these guidelines before you get started:

  1. Questions & Concerns
  2. Issues & Bugs
  3. Feature Requests
  4. Submitting Pull Requests

Questions & concerns

If you have any questions about using or developing for this project, reach out to @mrina24 (github user)

Issues & bugs

Submit an [issue] or [pull request] with a fix if you find any bugs in the workshop. See below for instructions on sending in pull requests.

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.

  • bug(file-name): [title/summary of issue]
  • fix(file-name): [title/summary of issue fixed]

Feature requests

Submit an [issue] to request a new feature via a PR:

  • issue(file-name): [title/summary of issue with feature being requested]

Submit a PR For new feature:

  • feat(feature-name): [title/summary of new feature]

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 base-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. If any changes are requested by the project maintainers/contributors, make them and follow this process again until the changes are merged in.