mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 15:04:42 +00:00
ffa21224c0
This adds "referer,ot,uint,iif,fo,keep-alives" to the ignore list: - "referer" is the well-known HTTP header field name (with its spelling error) - "ot" appears a lot in the opentracing contrib. - "iff" often stands for "if and only if" - "fo" appears as a test string in tests/ist.c (could possibly be changed) - "keep-alives" appears as a noon in "...enable TCP keep-alives".
18 lines
388 B
YAML
18 lines
388 B
YAML
name: codespell
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 2"
|
|
|
|
jobs:
|
|
codespell:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install prerequisites
|
|
run: sudo pip install codespell
|
|
- name: check
|
|
run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives --skip="CHANGELOG,*.fig,*.pem"
|