Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoDocs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <1212885+coliff@users.noreply.github.com>2022-03-08 13:32:05 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-08 18:59:24 +0300
commita393f4cf43829011e96d109de2f039a9b05b2d16 (patch)
tree08e0bda30f54a7e363697b21b8aa53f6d6778adb /.github
parent8b6b1c381dfd62d23feacec3394798158635ea4a (diff)
Add a Spellcheck GitHub Action and config
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/spellcheck.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml
new file mode 100644
index 000000000..0129bbb27
--- /dev/null
+++ b/.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