mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-21 20:00:17 +00:00
6569de2b88
let us switch to codespell github actions instead of invocation from cmdline. also, "ifset,thrid,strack,ba,chck,hel,unx,mor" added to whitelist, those are variable names and special terms widely used in HAProxy
20 lines
500 B
YAML
20 lines
500 B
YAML
name: Spelling Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 2"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: codespell-project/codespell-problem-matcher@v1
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
skip: CHANGELOG,Makefile,*.fig,*.pem
|
|
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
|