mirror of
https://github.com/falcosecurity/falco.git
synced 2026-02-21 14:13:27 +00:00
Folllow up to #1961 to prevent common typos to be added to the repo. Signed-off-by: Mateusz Gozdek <mgozdek@microsoft.com>
15 lines
312 B
YAML
15 lines
312 B
YAML
name: Codespell
|
|
on:
|
|
pull_request:
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
skip: .git
|
|
ignore_words_file: .codespellignore
|
|
check_filenames: true
|
|
check_hidden: true
|