mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 16:55:41 +00:00
d88c905f03
- adds actieve to the codespell ignore list; it is the name of an adopter listed in ADOPTERS.md, and a dictionary update started reporting it as a misspelling of active - the check runs only on pull requests, so this surfaced as every open pull request going red at once rather than as a failure on main
19 lines
479 B
YAML
19 lines
479 B
YAML
name: codespell
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run code spelling check
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
ignore_words_list: actieve,allos,ans,dne,noe,referr,ssudo,te,tranfer,ue
|
|
skip: go.*,zititest/go.*,./controller/storage/zitiql/zitiql_parser.go,*.pem,*.cert,*.key
|