Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/run-on-main-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
branches: [ main ]
paths:
- deploy/charts/**
paths-ignore:
- deploy/charts/**/CONTRIBUTING.md
- deploy/charts/**/ci/**
- deploy/charts/**/CLAUDE.md

jobs:
publish-charts:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-on-pr-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
pull_request:
paths:
- deploy/charts/**
paths-ignore:
- deploy/charts/**/CONTRIBUTING.md
- deploy/charts/**/ci/**
- deploy/charts/**/CLAUDE.md

jobs:
spellcheck:
Expand Down
8 changes: 8 additions & 0 deletions deploy/charts/operator-crds/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributing to Operator-CRDs Chart

Before making a contribution to the Operator-CRDs Chart you will need to ensure the following steps have been done:
- [Sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits)
- Run `helm template` on the changes you're making to ensure they are correctly rendered into Kubernetes manifests.
- Lint tests has been run for the Chart using the [Chart Testing](https://github.com/helm/chart-testing) tool and the `ct lint` command.
- Ensure variables are documented in `values.yaml` and the [pre-commit](https://pre-commit.com/) hook has been run with `pre-commit run --all-files` to generate the `README.md` documentation. To preview the content, use `helm-docs --dry-run`.
- If you are making changes to the Chart - remember to bump the Chart version following [SemVer](https://semver.org/). You will need to change the [Chart Version](./Chart.yaml#L5) and the [Chart Badge](./README.md#L4) on the README.
8 changes: 8 additions & 0 deletions deploy/charts/operator/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributing to Operator Chart

Before making a contribution to the Operator Chart you will need to ensure the following steps have been done:
- [Sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits)
- Run `helm template` on the changes you're making to ensure they are correctly rendered into Kubernetes manifests.
- Lint tests has been run for the Chart using the [Chart Testing](https://github.com/helm/chart-testing) tool and the `ct lint` command.
- Ensure variables are documented in `values.yaml` and the [pre-commit](https://pre-commit.com/) hook has been run with `pre-commit run --all-files` to generate the `README.md` documentation. To preview the content, use `helm-docs --dry-run`.
- If you are making changes to the Chart - remember to bump the Chart version following [SemVer](https://semver.org/). You will need to change the [Chart Version](./Chart.yaml#L5) and the [Chart Badge](./README.md#L4) on the README.
Loading