summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkumvijaya <kumvijaya@gmail.com>2026-04-14 00:09:07 +0530
committerkumvijaya <kumvijaya@gmail.com>2026-04-14 00:09:07 +0530
commitcc7a037929053570492faea972cf28a7689ae2bd (patch)
treefe0c466171e78aacb0bacab988bc76c35c4d3998
parentc5d27843772d9e4a3fd0e4b76e0fcfeb8cf6b7e6 (diff)
downloadvyos-1x-cc7a037929053570492faea972cf28a7689ae2bd.tar.gz
vyos-1x-cc7a037929053570492faea972cf28a7689ae2bd.zip
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/**"
+]