mirror of
https://github.com/pi-hole/FTL.git
synced 2026-07-07 23:06:53 +01:00
69db4c18e8
Signed-off-by: DL6ER <dl6er@dl6er.de>
24 lines
739 B
YAML
24 lines
739 B
YAML
name: Codespell
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
jobs:
|
|
spell-check:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout repository
|
|
uses: actions/checkout@v4.1.1
|
|
-
|
|
name: Spell-Checking
|
|
uses: codespell-project/actions-codespell@master
|
|
with:
|
|
ignore_words_file: .github/.codespellignore
|
|
skip: ./src/database/sqlite3.c,./src/database/sqlite3.h,./src/database/shell.c,./src/lua,./src/dnsmasq,./src/tre-regex,./.git,./test/libs,./src/webserver/civetweb,./src/zip/miniz,./src/api/docs/content/external
|
|
exclude_file: .github/.codespellignore_lines
|