mirror of https://github.com/dapr/docs.git
Add branch guidance
This commit is contained in:
parent
0b256fee2e
commit
faf2a5295a
14
README.md
14
README.md
|
@ -6,6 +6,20 @@ If you are looking to explore the Dapr documentation, please go to the documenta
|
||||||
|
|
||||||
This repo contains the markdown files which generate the above website. See below for guidance on running with a local environment to contribute to the docs.
|
This repo contains the markdown files which generate the above website. See below for guidance on running with a local environment to contribute to the docs.
|
||||||
|
|
||||||
|
## Branch guidance
|
||||||
|
|
||||||
|
The Dapr docs handles branching differently than most code repositories. Instead of having a `master` or `main` branch, every branch is labeled to match the major and minor version of a runtime release.
|
||||||
|
|
||||||
|
The following branches are currently maintained:
|
||||||
|
|
||||||
|
| Branch | Website | Description |
|
||||||
|
|--------|---------|-------------|
|
||||||
|
| [v0.11](https://github.com/dapr/docs) (primary) | https://docs.dapr.io | Latest Dapr release documentation. Typo fixes, clarifications, and most documentation goes here.
|
||||||
|
| [v1.0-rc2](https://github.com/dapr/docs/tree/v1.0-rc2) | https://v1-rc2.docs.dapr.io/ | Latest Dapr release candidate release documentation. Doc updates that are only applicable to v1.0-rc2+ go here.
|
||||||
|
| [v1.0-rc3](https://github.com/dapr/docs/tree/v1.0-rc3) (pre-release) | https://v1-rc3.docs.dapr.io/ | Pre-release release candidate documentation. Doc updates that are only applicable to v1.0-rc2+ go here.
|
||||||
|
|
||||||
|
For more information visit the [Dapr branch structure](https://docs.dapr.io/contributing/contributing-docs/#branch-guidance) document.
|
||||||
|
|
||||||
## Contribution guidelines
|
## Contribution guidelines
|
||||||
|
|
||||||
Before making your first contribution, make sure to review the [contributing section](http://docs.dapr.io/contributing/) in the docs.
|
Before making your first contribution, make sure to review the [contributing section](http://docs.dapr.io/contributing/) in the docs.
|
||||||
|
|
|
@ -18,6 +18,14 @@ Fork the [docs repository](https://github.com/dapr/docs) to work on any changes
|
||||||
|
|
||||||
Follow the instructions in the repository [README.md](https://github.com/dapr/docs/blob/master/README.md#environment-setup) to install Hugo locally and build the docs website.
|
Follow the instructions in the repository [README.md](https://github.com/dapr/docs/blob/master/README.md#environment-setup) to install Hugo locally and build the docs website.
|
||||||
|
|
||||||
|
## Branch guidance
|
||||||
|
|
||||||
|
The Dapr docs handles branching differently than most code repositories. Instead of having a `master` or `main` branch, every branch is labeled to match the major and minor version of a runtime release. For the full list visit the [Docs repo](https://github.com/dapr/docs#branch-guidance)
|
||||||
|
|
||||||
|
Overall, all updates should go into the docs branch for the latest release of Dapr. You can find this directly at https://github.com/dapr/docs, as the latest release will be the default branch. For any docs changes that are applicable to a release candidate or a pre-release version of the docs, make your changes into that particular branch.
|
||||||
|
|
||||||
|
For example, if you are fixing a typo, adding notes, or clarifying a point, make your changes into the default Dapr branch. If you are documenting an upcoming change to a component or the runtime, make your changes to the pre-release branch. Branches can be found in the [Docs repo](https://github.com/dapr/docs#branch-guidance)
|
||||||
|
|
||||||
## Style and tone
|
## Style and tone
|
||||||
These conventions should be followed throughout all Dapr documentation to ensure a consistent experience across all docs.
|
These conventions should be followed throughout all Dapr documentation to ensure a consistent experience across all docs.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue