From c61d52f6c4fbbb83c1072d292d702144d1452074 Mon Sep 17 00:00:00 2001 From: Martin Schurz Date: Mon, 1 May 2023 12:53:49 +0200 Subject: [PATCH] add codespell action Signed-off-by: Martin Schurz --- .github/workflows/codespell.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/codespell.yml diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000..03385ae --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,15 @@ +--- +name: Codespell - Spellcheck + +on: # yamllint disable-line rule:truthy + push: + branches: [src] + pull_request: + branches: [src] + +jobs: + codespell: + uses: "dev-sec/.github/.github/workflows/codespell.yml@main" + with: + ignore_words_list: "bund,seh,ois" + skip: "./themes/devsec/static/node_modules,./themes/devsec/static/foundation,./themes/devsec/static/jquery,./themes/devsec/static/css/app.css"