Skip to content

Commit 25f0237

Browse files
docs: update actions and workflows documentation
[skip ci] Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 554ba53 commit 25f0237

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

actions/helm/test-chart/README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
-->
1717
<!-- start description -->
1818

19-
Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://github.com/helm/chart-testing-action)
19+
Action to lint and test installing some Helm chart(s).
20+
Mainly using [helm/chart-testing-action](https://github.com/helm/chart-testing-action).
2021

2122
<!-- end description -->
2223
<!-- start contents -->
@@ -59,17 +60,22 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
5960
# Default: ${{ github.token }}
6061
oci-registry-password: ""
6162

63+
# Description: Only run lint and tests on changed charts.
64+
#
65+
# Default: true
66+
check-diff-only: ""
67+
6268
# Description: Enable linting of the Helm chart. See
6369
# <https://github.com/helm/chart-testing/blob/main/doc/ct_lint.md>.
6470
#
6571
# Default: true
6672
enable-lint: ""
6773

68-
# Description: Enable testing of the Helm chart. See
74+
# Description: Enable installing the Helm chart. See
6975
# <https://github.com/helm/chart-testing/blob/main/doc/ct_install.md>.
7076
#
7177
# Default: true
72-
enable-test: ""
78+
enable-install: ""
7379
```
7480
7581
<!-- end usage -->
@@ -83,8 +89,9 @@ Action to test a Helm chart. Mainly using [helm/chart-testing-action](https://gi
8389
| <code>oci-registry</code> | OCI registry where to pull and push images | <code>ghcr.io</code> | **false** |
8490
| <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** |
8591
| <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** |
92+
| <code>check-diff-only</code> | Only run lint and tests on changed charts. | <code>true</code> | **false** |
8693
| <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** |
87-
| <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** |
94+
| <code>enable-install</code> | Enable installing the Helm chart.<br />See <https://github.com/helm/chart-testing/blob/main/doc/ct_install.md>. | <code>true</code> | **false** |
8895
8996
<!-- end inputs -->
9097
<!-- start outputs -->

0 commit comments

Comments
 (0)