diff options
| -rw-r--r-- | .github/workflows/check-typos.yml | 19 | ||||
| -rw-r--r-- | .typos.toml | 6 |
2 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/check-typos.yml b/.github/workflows/check-typos.yml new file mode 100644 index 000000000..04dd4837b --- /dev/null +++ b/.github/workflows/check-typos.yml @@ -0,0 +1,19 @@ +--- +name: Check typos + +on: + pull_request_target: + branches: + - current + - circinus + - sagitta + types: [opened, synchronize, edited] + +permissions: + pull-requests: write + contents: read + +jobs: + check-typos: + uses: vyos/.github/.github/workflows/check-typos.yml@current + secrets: inherit diff --git a/.typos.toml b/.typos.toml new file mode 100644 index 000000000..cc5c3667a --- /dev/null +++ b/.typos.toml @@ -0,0 +1,6 @@ +# .typos.toml +[files] +extend-exclude = [ + "smoketest/**", + "mibs/**" +] |
