Code of conduct | Contact admins | Open an Issue
Thank you for wanting to contribute back to the Sensu Community! Please read and follow our code of conduct. Anyone can reach out to administrators at docs@sensu.io if needed.
From any documentation page on docs.sensu.io, select "Edit this page". This will take you to the corresponding markdown file in GitHub, create a fork of this repository, and create a new branch for your contribution. Make your changes to the markdown content, then select "Propose file change" and follow the prompts to submit a pull request. If you have any questions, feel free to open an issue.
These instructions will help you fork this repository, create a branch, and submit a pull request.
Fork the appropriate repository by clicking the Fork button (top right) on GitHub.
From whatever directory you want to have this code, clone this repository and set up the upstream remote:
$ git clone https://github.com/REPLACEME/sensu-docs/
# or: git clone git@github.com:REPLACEME/sensu-docs.git
$ cd sensu-docs
$ git remote add upstream https://github.com/sensu/sensu-docs.git
# or: git remote add upstream git@github.com:sensu/sensu-docs.git
Begin by updating your local fork:
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
Create a new, descriptively named branch to contain your change:
$ git checkout -b fix-code-samples
See the Sensu Docs style guide for formatting instructions and style conventions.
To build the site, run yarn. This builds the search index and compiles the static content.
You can then run yarn run server to view the site real-time as you edit.
Commit your changes with a descriptive commit message.
$ git commit -am "fix invalid JSON"
Repeat the commit process as often as you need and then edit/test/repeat. Minor edits can be added to your last commit quite easily:
$ git add -u
$ git commit --amend
This project uses commit hooks to test the build whenever making a commit.
When ready to review (or just to establish an offsite backup or your work), push your branch to your fork on GitHub:
$ git push origin feature/myfeature
If you recently used commit --amend, you may need to force push:
$ git push -f origin feature/myfeature
Create a pull request by visiting sensu/sensu-docs on GitHub and following the prompts. We'd appreciate it if you could allow edits to your PR from Sensu docs maintainers.
After the PR is submitted, project maintainers will review it.
If you'd like to mark your PR as work in progress, add [WIP] to the PR title.
If you have questions or want to ensure a PR is reviewed, reach out in the #documentation channel of the Sensu Community Slack.
Some contributions apply to multiple versions of Sensu, or other sections of the documentation. We appreciate if you have a chance to copy these edits to all applicable versions. 🙏
If you have a good idea on how to script this type of behavior, please comment on this issue discussing ideas.
This repository is one of many that are community supported around Sensu. See all the ways you can get involved by visiting the Community repository.
One of the most helpful ways you can benefit the Sensu community is by writing about how you use Sensu. Write up something on Medium, embed Gists for longer code samples and let us know in Slack! We'll publish it to the blog at blog.sensu.io.
We ❤️ your participation and appreciate the unique perspective you bring to our community. Keep sharing the #monitoringlove.