summaryrefslogtreecommitdiffstats
path: root/docs/.github/workflows/spellcheck.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/.github/workflows/spellcheck.yml')
-rw-r--r--docs/.github/workflows/spellcheck.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/.github/workflows/spellcheck.yml b/docs/.github/workflows/spellcheck.yml
new file mode 100644
index 000000000..86f8f53a5
--- /dev/null
+++ b/docs/.github/workflows/spellcheck.yml
@@ -0,0 +1,22 @@
+name: "Check spelling"
+on:
+ push:
+ pull_request:
+ branches-ignore:
+ - "dependabot/**"
+
+permissions:
+ contents: read
+
+jobs:
+ spellcheck:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: streetsidesoftware/cspell-action@v5
+ with:
+ check_dot_files: false
+ files: content/**/*.md
+ incremental_files_only: true
+ inline: warning
+ strict: false