diff options
| author | Andrii Klymenko <a.klymenko@vyos.io> | 2026-04-15 22:06:52 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-15 22:06:52 +0300 |
| commit | d9c7cf3bc0e76661f48bd0ce13acfc7be182a326 (patch) | |
| tree | 46329867c6f552ab1eab36329d4ca717464d449e /.github/workflows | |
| parent | 96573c5c3fa4a619819e808c4f8e7a8996cf7fe6 (diff) | |
| parent | cc7a037929053570492faea972cf28a7689ae2bd (diff) | |
| download | vyos-1x-d9c7cf3bc0e76661f48bd0ce13acfc7be182a326.tar.gz vyos-1x-d9c7cf3bc0e76661f48bd0ce13acfc7be182a326.zip | |
Merge pull request #5126 from kumvijaya/current
T8490: added typos check workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check-typos.yml | 19 |
1 files changed, 19 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 |
