summaryrefslogtreecommitdiff
path: root/.github/workflows/codespell-docs.yml
diff options
context:
space:
mode:
authorBertrand Yuan <me@bertyuan.com>2026-04-09 16:34:44 +0800
committerBertrand Yuan <me@bertyuan.com>2026-04-09 16:34:44 +0800
commitf705fc767823f7ad7da91007ac26fa32c39ead3c (patch)
treef0b28f29f8349e4d741eb9005bdcd43d5a28fe0b /.github/workflows/codespell-docs.yml
parent825c5b406b1cab9b1b2a5e5a418bd72a247d6b58 (diff)
remove .github/workflow
Signed-off-by: Bertrand Yuan <me@bertyuan.com>
Diffstat (limited to '.github/workflows/codespell-docs.yml')
-rw-r--r--.github/workflows/codespell-docs.yml57
1 files changed, 0 insertions, 57 deletions
diff --git a/.github/workflows/codespell-docs.yml b/.github/workflows/codespell-docs.yml
deleted file mode 100644
index d6409a1..0000000
--- a/.github/workflows/codespell-docs.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-# Codespell configuration inlined in this workflow (no .codespellrc needed)
----
-name: Codespell
-
-on:
- push:
- branches: ['**']
- pull_request:
- branches: ['**']
-
-permissions:
- contents: read
-
-jobs:
- codespell:
- name: Check for spelling errors
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v4
-
- - name: Annotate locations with typos
- uses: codespell-project/codespell-problem-matcher@v1
-
- - name: Codespell
- uses: codespell-project/actions-codespell@v2
- with:
- path: ./docs/
- # filenames and hidden files
- check_filenames: true
- check_hidden: true
- # skip list
- skip: |
- .git
- .husky
- .vscode
- .idea
- .venv
- venv
- node_modules
- dist
- build
- out
- coverage
- *.lock
- *.min.js
- *.svg
- *.pdf
- *.png
- *.jpg
- package.json
- package-lock.json
- # Optional: Proper Noun Whitelist File
- ignore_words_file: .codespellignore
- # Fail CI on errors, set to true to only warn
- only_warn: true