added spellcheck action + renovate config
All checks were successful
Codespell / Check for spelling errors (push) Successful in 24s
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:
parent
1685b50319
commit
7308b4d894
2 changed files with 29 additions and 1 deletions
27
.forgejo/workflows/codespell.yml
Normal file
27
.forgejo/workflows/codespell.yml
Normal 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
|
|
@ -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/"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue