From 6fbdc58ee81a8e0fbf538ea8b1af99a78d297e01 Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek 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. Also sync with .codespell.skip file, so we get consistent behavior across local execution and CI. Also avoid using wildcard on components, so we have a chance to fix reported typos upstream before we skip them from checking. Signed-off-by: Mateusz Gozdek --- .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..829296ea6 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,./.git,./lokoctl,*.png,./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