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.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/.github/workflows/spellcheck.yml b/docs/.github/workflows/spellcheck.yml
new file mode 100644
index 000000000..6f68fee18
--- /dev/null
+++ b/docs/.github/workflows/spellcheck.yml
@@ -0,0 +1,20 @@
+name: 'Check spelling'
+on: # rebuild any PRs and main branch changes
+ push:
+ branches-ignore:
+ - "dependabot/**"
+ pull_request:
+
+permissions:
+ contents: read
+
+jobs:
+ spellcheck:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: streetsidesoftware/cspell-action@v2
+ with:
+ inline: warning
+ strict: false
+ incremental_files_only: true