summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Klymenko <a.klymenko@vyos.io>2026-04-15 22:06:52 +0300
committerGitHub <noreply@github.com>2026-04-15 22:06:52 +0300
commitd9c7cf3bc0e76661f48bd0ce13acfc7be182a326 (patch)
tree46329867c6f552ab1eab36329d4ca717464d449e
parent96573c5c3fa4a619819e808c4f8e7a8996cf7fe6 (diff)
parentcc7a037929053570492faea972cf28a7689ae2bd (diff)
downloadvyos-1x-d9c7cf3bc0e76661f48bd0ce13acfc7be182a326.tar.gz
vyos-1x-d9c7cf3bc0e76661f48bd0ce13acfc7be182a326.zip
Merge pull request #5126 from kumvijaya/current
T8490: added typos check workflow
-rw-r--r--.github/workflows/check-typos.yml19
-rw-r--r--.typos.toml6
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/**"
+]