From a670ff35ebbac23b39644285e1449459bfe16ab4 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Tue, 13 Feb 2024 15:48:24 +0100 Subject: [PATCH] update(ci): process all charts for changes in values.yaml Signed-off-by: Aldo Lacuku --- .github/workflows/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7bf0f9583..3ed5ae13d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: - name: Run Helm Docs and check the outcome run: | - for chart in event-generator falco k8s-metacollector falco-exporter; do + for chart in $(ls ./charts); do docker run \ --rm \ --workdir=/helm-docs \ @@ -27,9 +27,9 @@ jobs: - name: Print a comment in case of failure run: | - echo "The README.md filer are not up to date. + echo "The README.md files are not up to date. - Please, run make docs before pushing." + Please, run \"make docs\" before pushing." exit 1 if: | failure() && github.event.pull_request.head.repo.full_name == github.repository