From 9d3bdfaf1a1833ab41bbb73ff04ee40cbaf13f99 Mon Sep 17 00:00:00 2001 From: Manabu McCloskey Date: Thu, 20 Jun 2024 08:07:40 -0700 Subject: [PATCH] codespell: ignore generated manifests (#318) Signed-off-by: Manabu McCloskey --- .github/workflows/codespell.yaml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codespell.yaml b/.github/workflows/codespell.yaml index 1a2b741f..18a7f0e6 100644 --- a/.github/workflows/codespell.yaml +++ b/.github/workflows/codespell.yaml @@ -23,5 +23,5 @@ jobs: with: check_filenames: true # When using this Action in other repos, the --skip option below can be removed - skip: "*.excalidraw,*.git,*.png,*.jpg,*.svg,go.mod,go.sum" + skip: "*.excalidraw,*.git,*.png,*.jpg,*.svg,go.mod,go.sum,./pkg/controllers/localbuild/resources" continue-on-error: true # The PR checks will not fail, but the possible spelling issues will still be reported for review and correction \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b54b89b9..d38c8b54 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,4 +8,4 @@ repos: rev: v2.2.6 hooks: - id: codespell - args: ["--skip=*.excalidraw,*.git,*.png,*.jpg,*.svg,go.sum,go.mod"] \ No newline at end of file + args: ["--skip=*.excalidraw,*.git,*.png,*.jpg,*.svg,go.sum,go.mod,./pkg/controllers/localbuild/resources"]