98291440b8
This reverts commit 413aa6e2e94a591d444ef9bd174a99b64eea8436. It reports failures that neither the patch's author nor the committer are able to check for before pushing, causing an excess of failure reports that can hardly be acted upon. We need to find a better solution, let's revert it for now.
22 lines
671 B
YAML
22 lines
671 B
YAML
name: Spelling Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 2"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository_owner == 'haproxy' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: codespell-project/codespell-problem-matcher@v1
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
skip: CHANGELOG,Makefile,*.fig,*.pem,./doc/design-thoughts,./doc/internals
|
|
ignore_words_list: ist,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen,ifset,thrid,strack,ba,chck,hel,unx,mor,clen,collet,bu,htmp,siz,experim
|
|
uri_ignore_words_list: trafic,ressources
|