From d7d59d8e0db4c9fb321c171c308c6e1d4c78ec9b Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek <mateusz@kinvolk.io> Date: Sat, 31 Oct 2020 19:20:08 +0100 Subject: [PATCH] .github/workflows/ci.yaml: fix codespell skip option Using spaces in it make it only check listed files I think. Signed-off-by: Mateusz Gozdek <mateusz@kinvolk.io> --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f0643a69d..507a1037f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,7 +49,7 @@ jobs: - name: Codespell test uses: codespell-project/actions-codespell@master with: - skip: vendor, ./lokoctl, *.png, assets/charts/components/*, docs/images/*, + skip: ./vendor,./lokoctl,*.png,./assets/charts/components/*,./docs/images/*,./assets/charts/components/cert-manager,./assets/charts/components/rook,./assets/charts/components/prometheus-operator,./assets/charts/components/velero,./assets/charts/components/cluster-autoscaler,./assets/charts/components/contour/crds,./assets/charts/components/openebs-operator/README.md,./assets/charts/control-plane/calico/crds,./docs/images/lokomotive-example.gif ignore_words_file: './.codespell.ignorewords' check_filenames: true check_hidden: true