Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update actions and workflows documentation #382

Merged
merged 1 commit into from
Mar 4, 2025
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
14 changes: 14 additions & 0 deletions actions/helm/test-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,18 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
#
# Default: ${{ github.token }}
oci-registry-password: ""

# Description: Enable linting of the Helm chart. See
# <https://github.com/helm/chart-testing/blob/main/doc/ct_lint.md>.
#
# Default: true
enable-lint: ""

# Description: Enable testing of the Helm chart. See
# <https://github.com/helm/chart-testing/blob/main/doc/ct_install.md>.
#
# Default: true
enable-test: ""
```

<!-- end usage -->
Expand All @@ -71,6 +83,8 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
| <code>oci-registry</code> | OCI registry where to pull and push images | <code>ghcr.io</code> | **false** |
| <code>oci-registry-username</code> | Username used to log against the OCI registry.<br />See <https://github.com/docker/login-action#usage>. | <code>${{ github.repository_owner }}</code> | **false** |
| <code>oci-registry-password</code> | Password or personal access token used to log against the OCI registry.<br />Can be passed in using "secrets.GITHUB_TOKEN".<br />See <https://github.com/docker/login-action#usage>. | <code>${{ github.token }}</code> | **false** |
| <code>enable-lint</code> | Enable linting of the Helm chart.<br />See <https://github.com/helm/chart-testing/blob/main/doc/ct_lint.md>. | <code>true</code> | **false** |
| <code>enable-test</code> | Enable testing of the Helm chart.<br />See <https://github.com/helm/chart-testing/blob/main/doc/ct_install.md>. | <code>true</code> | **false** |

<!-- end inputs -->
<!-- start outputs -->
Expand Down