diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-03-08 19:39:33 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-03-08 19:39:33 +0100 |
commit | 9d76b8fa34436d87ff023d95c39d60144ccd7f4d (patch) | |
tree | d157e6a0b8427ad4e3eb32e61a60c799f7d4f6d1 /docs/.github | |
parent | 4576c82ed462bc9c3934f76181101df1c5a4157e (diff) | |
parent | d706529720b3b2ccb99719ccd578062ca25a0cc2 (diff) | |
download | hugo-9d76b8fa34436d87ff023d95c39d60144ccd7f4d.tar.gz hugo-9d76b8fa34436d87ff023d95c39d60144ccd7f4d.zip |
Merge commit 'd706529720b3b2ccb99719ccd578062ca25a0cc2'
Diffstat (limited to 'docs/.github')
-rw-r--r-- | docs/.github/workflows/spellcheck.yml | 17 |
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 |