Skip to content
Open
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
35 changes: 35 additions & 0 deletions CONTRIBUTE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Notes to contribute to the charts

## Version bump

Each merge request should include a version bump.

Example:

The MR brings a small fix. `main` is at `0.2.0`.
Then it should include a change that bumps the version number in `Chart.yaml` to
`0.2.1`.

## Changelog

Each merge request should include a changelog.
For examples, have a look at the existing `CHANGELOG.md` files.

The suggested format is the following.

```
## x.y.z

**Changes**

List notable changes here...

**Migration notes**

List migration steps here...
Omit if unnecessary.

**Commits**

$(git shortlog main..)
```