summaryrefslogtreecommitdiffstats
path: root/docs/.github
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-08 19:39:33 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-08 19:39:33 +0100
commit9d76b8fa34436d87ff023d95c39d60144ccd7f4d (patch)
treed157e6a0b8427ad4e3eb32e61a60c799f7d4f6d1 /docs/.github
parent4576c82ed462bc9c3934f76181101df1c5a4157e (diff)
parentd706529720b3b2ccb99719ccd578062ca25a0cc2 (diff)
Diffstat (limited to 'docs/.github')
-rw-r--r--docs/.github/workflows/spellcheck.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/.github/workflows/spellcheck.yml b/docs/.github/workflows/spellcheck.yml
new file mode 100644
index 000000000..0129bbb27
--- /dev/null
+++ b/docs/.github/workflows/spellcheck.yml
@@ -0,0 +1,17 @@
+name: 'Check spelling'
+on: # rebuild any PRs and main branch changes
+ push:
+ branches-ignore:
+ - "dependabot/**"
+ pull_request:
+
+jobs:
+ spellcheck:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: streetsidesoftware/cspell-action@3bc52c39528d0214a947ff7f8b5c23ad3273435b
+ with:
+ inline: warning
+ strict: false
+ incremental_files_only: true