title | weight | description |
---|---|---|
Make a Change Using the GitHub Web UI |
3 |
Use the GitHub web UI to edit a single page and create a pull request.
|
-
Click the Suggest an Edit link on the documentation page you want to update. This takes you to the page's source file in GitHub.
-
Click the Edit this file... pencil icon to edit the file.
{{< figure src="/images/contribute/github-edit-file-icon.jpg">}}
-
Make your changes in the GitHub markdown editor. Be sure to follow the guidelines in the {{< linkWithTitle "docs-style-guide.md" >}}.
-
Fill in the Propose file change form.
{{< figure src="/images/contribute/github-propose-file-change-form.jpg" >}}
-
Explain what your file change is about in a short summary.
-
Provide a clear description of your change. Do not to leave this field blank. It is helpful to reviewers to have additional context about what you changed.
-
-
Click Propose file change. This takes you to the Comparing changes screen so you can review your changes.
-
Click Create pull request. This takes you to the Open a pull request form.
-
Fill in the Open a pull request form.
{{< figure src="/images/contribute/github-open-pull-request.jpg" >}}
-
The Title defaults to the file change summary. Update the title so it follows the
<type>(<scope>): <subject>
format. Make sure you include a space after the colon. For example:docs(fix): fix a typo
The Armory docs repository uses a PR title checker, so your PR fails the required checks if the title is not in the correct format.
- docs(fix):
- docs(feat):
- docs(refactor):
Basically, you can put whatever word you want between the parentheses, but the single word should reflect what the PR is doing (fix, feat, refactor) or the content area (plugins, dinghy, overview, etc).
-
The Leave a comment field defaults to the file change description. PR descriptions are the first step to helping reviewers and project maintainers understand why your change was made. Do not leave this field blank. Provide as much description as possible. A good description helps get your PR merged faster!
-
Leave the Allow edits from maintainers checkbox selected.
-
-
Click the Create pull request button.
Congratulations! You can view your submitted pull request on the Pull requests tab.
The Armory documentation team reviews docs pull requests. If you have a specific person in mind, tag that person in the issue comments using the @ symbol and then their GitHub username. Reviewers can request changes, leave comments, or approve the pull request.
- Go to the Files changed tab in GitHub.
- Make the requested changes.
- Commit the changes.