summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorYuriy Andamasov <yuriy@vyos.io>2026-07-14 20:24:08 +0300
committerGitHub <noreply@github.com>2026-07-14 20:24:08 +0300
commit12f3cf7fbcf0dcea8f9071fdf8ea939746a68767 (patch)
tree89afe75db28dae49d99c46293cdba6d828fd75b6 /.github/workflows
parente8f11eaca0b10b6488410b0e778a9630819f8ed3 (diff)
downloadvyconf-12f3cf7fbcf0dcea8f9071fdf8ea939746a68767.tar.gz
vyconf-12f3cf7fbcf0dcea8f9071fdf8ea939746a68767.zip
ci: T9082: onboard CodeQL scanning via central reusable workflow (#61)rolling
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codeql.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 0000000..38982e1
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,30 @@
+name: "Perform CodeQL Analysis"
+
+on:
+ push:
+ branches:
+ - rolling
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
+ pull_request:
+ branches:
+ - rolling
+ paths:
+ - '**'
+ - '!.github/**'
+ - '!**/*.md'
+ schedule:
+ - cron: '24 13 * * 0'
+
+permissions:
+ actions: read
+ contents: read
+ security-events: write
+
+jobs:
+ codeql-analysis-call:
+ uses: vyos/.github/.github/workflows/codeql-analysis.yml@production
+ with:
+ languages: "['python']"