mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
22 lines
439 B
YAML
22 lines
439 B
YAML
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
|