feat: add helmchart updater

Signed-off-by: skuethe <56306041+skuethe@users.noreply.github.com>
This commit is contained in:
skuethe 2025-12-04 23:09:46 +01:00
parent 8d6175c13b
commit 9cb85f630c
No known key found for this signature in database
GPG key ID: 4A193084646743C0
5 changed files with 109 additions and 2 deletions

View file

@ -57,5 +57,6 @@ Learn more in the [Release Notes customization](../guides/release-notes.md) guid
### Updater
Updaters can update or create files that will be included in [Release Pull Request](#release-pull-request). Examples of Updaters are
`changelog` for `CHANGELOG.md`, `generic` that can update arbitrary files and
`packagejson` that knows how to update Node.JS `package.json` files.
`changelog` for `CHANGELOG.md`, `generic` that can update arbitrary files,
`packagejson` that knows how to update Node.JS `package.json` files and
`helmchart` for Helm's `Chart.yaml` file.

View file

@ -31,3 +31,10 @@ Learn more about this updater in ["Updating arbitrary files"](../guides/updating
- **Default**: disabled
This updater can update the `version` field in Node.js `package.json` files. The updater is disabled by default.
## Helm's `Chart.yaml` Updater
- **Name**: `helmchart`
- **Default**: disabled
This updater can update the `version` field in Helm's `Chart.yaml` files. The updater is disabled by default.