From fb4c571998249d9bfd26c4410b9452a05c98ebe6 Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Mon, 19 May 2025 14:58:37 +0200 Subject: [PATCH] Disable spell checking action temporarily - Upstream commit with experimental support for ignoring code blocks has been removed - Spell checking doesn't run on PRs from forks or untrusted users --- .github/workflows/spelling.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/spelling.yaml diff --git a/.github/workflows/spelling.yaml b/.github/workflows/spelling.yaml deleted file mode 100644 index e79e68d3..00000000 --- a/.github/workflows/spelling.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Check Spelling - -on: - pull_request: - -jobs: - spelling: - name: Check Spelling - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Check spelling - id: spelling - # The given commit contains preliminary, unreleased, support for ignoring - # whole blocks (multi-line) from spell checking. See - # https://github.com/check-spelling/check-spelling/commit/46c981b7c96b3777aff4fd711fc9a8f126121b04 - # for more details. - uses: check-spelling/check-spelling@46c981b7c96b3777aff4fd711fc9a8f126121b04 - with: - check_file_names: 1 - post_comment: 0 - use_magic_file: 1 - warnings: bad-regex,binary-file,deprecated-feature,large-file,limited-references,no-newline-at-eof,noisy-file,non-alpha-in-dictionary,token-is-substring,unexpected-line-ending,whitespace-in-dictionary,minified-file,unsupported-configuration,no-files-to-check - use_sarif: 1 - extra_dictionary_limit: 20 - extra_dictionaries: - cspell:software-terms/dict/softwareTerms.txt - cspell:bash/dict/bash-words.txt - cspell:companies/dict/companies.txt - cspell:filetypes/filetypes.txt