mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 07:18:54 +00:00
56d7925a97
See #14147
26 lines
722 B
YAML
26 lines
722 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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- uses: streetsidesoftware/cspell-action@3294df585d3d639e30f3bc019cb11940b9866e95 # v8.0.0
|
|
with:
|
|
incremental_files_only: true
|
|
strict: true
|
|
# cspell uses the .cspell.json configuration file
|
|
- uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2
|
|
with:
|
|
check_filenames: true
|
|
check_hidden: true
|
|
# codespell uses the .codespellrc file
|