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.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/.github/workflows/spellcheck.yml b/docs/.github/workflows/spellcheck.yml
index 594621604..a650f153c 100644
--- a/docs/.github/workflows/spellcheck.yml
+++ b/docs/.github/workflows/spellcheck.yml
@@ -1,9 +1,9 @@
name: "Check spelling"
-on: # rebuild any PRs and main branch changes
+on:
push:
+ pull_request:
branches-ignore:
- "dependabot/**"
- pull_request:
permissions:
contents: read
@@ -12,10 +12,11 @@ jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - uses: streetsidesoftware/cspell-action@v2
+ - uses: actions/checkout@v4
+ - uses: streetsidesoftware/cspell-action@v4
with:
check_dot_files: false
+ files: content/**/*.md
incremental_files_only: true
inline: warning
strict: false