From f64216b79f6b16498bad23939e28fa3d407555e0 Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:05:40 +0200 Subject: [PATCH 1/6] Try different argument --ignore-regex IGNORE_REGEX regular expression that is used to find patterns to ignore by treating as whitespace. When writing regular expressions, consider ensuring there are boundary non-word chars, e.g., "\bmatch\b". Defaults to empty/disabled. ... -r REGEX, --regex REGEX regular expression that is used to find words. By default any alphanumeric character, the underscore, the hyphen, and the apostrophe is used to build words. This option cannot be specified together with --write-changes. --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index c24b80a6e98..c78fc090b90 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - ignore_regex: ^\s*"image\/png":\s.* + regex: ^\s*"image\/png":\s.* From da1b10ba0776a5c79b73d6d227164d892a87d406 Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:07:58 +0200 Subject: [PATCH 2/6] Goose chase source code --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index c78fc090b90..4cfc5469697 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - regex: ^\s*"image\/png":\s.* + ingore_word_regex: ^\s*"image\/png":\s.* From 1b64531910bec29ba31bde1080383663414d83d5 Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:10:43 +0200 Subject: [PATCH 3/6] Attempt to use args --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 4cfc5469697..ef6b258e8a1 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - ingore_word_regex: ^\s*"image\/png":\s.* + args: --ignore-regex "^\s*"image\/png":\s.*" From 0210e188ed466e91919e385f194c9319f684aeea Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:24:44 +0200 Subject: [PATCH 4/6] Try default argparse generation Missing meta variable --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index ef6b258e8a1..027c2a5f71c 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - args: --ignore-regex "^\s*"image\/png":\s.*" + IGNORE-REGEX: "^\s*"image\/png":\s.*" From 025179f66e7ea96d7ea4a9f3be27cdfd4354e188 Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:25:06 +0200 Subject: [PATCH 5/6] Fix quotes --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 027c2a5f71c..608a5477ba9 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - IGNORE-REGEX: "^\s*"image\/png":\s.*" + IGNORE-REGEX: ^\s*"image\/png":\s.* From 6a7842ac42db7f4551ecc5130fff3d0b95793332 Mon Sep 17 00:00:00 2001 From: Martin Breuss Date: Wed, 26 Apr 2023 04:31:07 +0200 Subject: [PATCH 6/6] Try underscores --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 608a5477ba9..4fe61ce77a0 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -16,4 +16,4 @@ jobs: with: ignore_words_file: .codespellignore skip: .*bootstrap.*,*.js,.*bootstrap-theme.css.map - IGNORE-REGEX: ^\s*"image\/png":\s.* + IGNORE_REGEX: ^\s*"image\/png":\s.*