From 5c4f33b317167e7ab4b1907c195953483d92857c Mon Sep 17 00:00:00 2001 From: Bridget McErlean Date: Mon, 14 Dec 2020 19:57:41 -0500 Subject: [PATCH] Fix path to crds.go file in codespell config (#3185) This changes the codespell action config to use a relative path for the generated crds.go file as the current pattern used fails the check used by codespell (which uses the `fnmatch` module). Signed-off-by: Bridget McErlean --- .github/workflows/pr-codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-codespell.yml b/.github/workflows/pr-codespell.yml index 14460ebd7..83dbf07f9 100644 --- a/.github/workflows/pr-codespell.yml +++ b/.github/workflows/pr-codespell.yml @@ -14,7 +14,7 @@ jobs: uses: codespell-project/actions-codespell@master with: # ignore the config/.../crd.go file as it's generated binary data that is edited elswhere. - skip: .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico,config/crd/crds/crds.go + skip: .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico,./config/crd/crds/crds.go ignore_words_list: iam,aks,ist,bridget,ue check_filenames: true check_hidden: true