added spellcheck action + renovate config
All checks were successful
Codespell / Check for spelling errors (push) Successful in 24s

Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
This commit is contained in:
Sagi Dayan 2024-12-14 23:41:40 +02:00
parent 1685b50319
commit 7308b4d894
Signed by: sagi
GPG key ID: FAB96BFC63B46458
2 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,27 @@
name: Codespell
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Annotate locations with typos
uses: "https://github.com/codespell-project/codespell-problem-matcher@v1"
- name: Codespell
uses: "https://github.com/codespell-project/actions-codespell@v2"
with:
check_filenames: true
check_hidden: true
skip: ./.git

View file

@ -2,5 +2,6 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"reviewers": [ "reviewers": [
"sagi" "sagi"
] ],
"branchPrefix": "inspector_gardget/"
} }