From 84c8afe2f1d72fbd7e5e7cee0e95db6a93184861 Mon Sep 17 00:00:00 2001 From: Ben Hosmer Date: Tue, 6 Dec 2022 09:50:01 -0500 Subject: [PATCH] Fix for good questions like #21 #82 #49 default charts/ dir versus custom --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 788d667..05dbc84 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ A GitHub Action for installing the [helm/chart-testing](https://github.com/helm/ ### Pre-requisites -1. A GitHub repo containing a directory with your Helm charts (e.g: `charts`) +1. A GitHub repo containing your Helm charts. + - _Note_: by default, this action expects your charts to be in a `charts/` directory. If you'd like to use a different location, you can specify the location either as a flag to the `ct` command with `--chart-dirs somedir` and/or `--charts .` Or use a `ct.yaml` configuration file. See the [example](https://github.com/helm/chart-testing-action/issues/21#issuecomment-602831632) for more details. 1. A workflow YAML file in your `.github/workflows` directory. An [example workflow](#example-workflow) is available below. For more information, reference the GitHub Help Documentation for [Creating a workflow file](https://help.github.com/en/articles/configuring-a-workflow#creating-a-workflow-file)