mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-12-24 19:11:00 +01:00
No functional change, but we should keep this current. see 5f4ddb54b05ae0355b1f64c22263a6bc381410df see 5c923f1869881156bf3a25c9659655ae10f7dbd0
23 lines
745 B
YAML
23 lines
745 B
YAML
name: Spelling Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 2"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: codespell-project/codespell-problem-matcher@v1.2.0
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
skip: CHANGELOG,Makefile,*.fig,*.pem,./doc/design-thoughts,./doc/internals
|
|
ignore_words_list: pres,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
|