diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-14 22:42:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-14 22:42:23 +0300 |
| commit | 17041b6f6953b993762854a67953fb35176b46e7 (patch) | |
| tree | cb3dd8efffd953ddc1ce59715e9653fe2e54d36d /.github/workflows/codeql.yml | |
| parent | e4c9d5d2aa845f8b738be2fa1cbc60b9f0fa8805 (diff) | |
| download | vyos.vyos-main.tar.gz vyos.vyos-main.zip | |
* ci: T9082: onboard CodeQL scanning via central reusable workflow
🤖 Generated by [robots](https://vyos.io)
* ci: T9082: add trivial changelog fragment for the CodeQL workflow
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to '.github/workflows/codeql.yml')
| -rw-r--r-- | .github/workflows/codeql.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000..b83b94e0 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,30 @@ +name: "Perform CodeQL Analysis" + +on: + push: + branches: + - main + paths: + - '**' + - '!.github/**' + - '!**/*.md' + pull_request: + branches: + - main + paths: + - '**' + - '!.github/**' + - '!**/*.md' + schedule: + - cron: '52 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']" |
