Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/getting-started/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,30 @@ We welcome all contributions and follow these highlights from [Google developer

Our documentation site is built on [Docusaurus](https://v2.docusaurus.io/).

## Commits

All commits should follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) as closely as possible.

## Pull Requests

When making a pull request,

* Prefix the name with
* **fix** - fixing something
* **feature** - adding a feature
* **clean** - cleaning up code
* **chore** - something mundane like updating a version number
* **docs** - updating documents
* **tests** - adding tests

An example is:

```
fix: issue where workspace page crashed upon three refreshes.
```

* Add the a /kind label in your PR description (enhancement, bug, etc)

## Project repositories
Onepanel consists of the following repositories. See `CONTRIBUTING.md` file in each repository for more information.

Expand Down