Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

53 lines (36 loc) · 1.7 KB

Contributing to Launchpad

We would love for you to contribute to Launchpad and help make it ever better! As a contributor, here are the guidelines we would like you to follow:

Code of Conduct

Help us keep Āut open and inclusive. Please read and follow our Code of Conduct.

Found an Issue?

If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our GitHub Repository. Including an issue reproduction is the absolute best way to help the team quickly diagnose the problem. Screenshots are also helpful.

You can help the team even more and submit a Pull Request with a fix.

Submitting a Pull Request (PR)

Before you submit your Pull Request (PR) consider the following guidelines:

  • Search GitHub for an open or closed PR that relates to your submission. You don't want to duplicate effort.

  • Make your changes in a new git branch:

    git checkout -b my-new-branch
  • Create your patch.

  • Follow React Standarts.

  • Test your changes.

  • Commit your changes using a descriptive commit message.

    git commit -m
  • Push your branch to GitHub:

    git push my-fork my-new-branch
  • In GitHub, send a pull request.

That's it! Thank you for your contribution!