mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 18:18:58 +00:00

my previous edits separated it into 2 lists that each started with 1. This should be fixed now!
1.4 KiB
1.4 KiB
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Submit your work | Submit your work as Pull Request for Home Assistant. | 2016-07-01 20:00 | true | false | true | true |
Submit your improvements, fixes, and new features to Home Assistant one at a time, using GitHub Pull Requests. Here are the steps:
-
From your fork, create a new branch to hold your changes:
git checkout -b some-feature
-
Make your changes, create a new platform, develop a new component, or fix issues.
-
Test your changes and check for style violations.
-
If everything looks good according to these musts, commit your changes:
git add .
git commit -m "Added some-feature"
- Consider adding tests to ensure that your code works.
-
Push your committed changes back to your fork on GitHub:
git push origin HEAD
-
Follow these steps to create your pull request.
-
Check for comments and suggestions on your pull request and keep an eye on the CI output.