diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-15 10:20:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-15 10:20:12 +0300 |
| commit | f851f43915ba194d5f22539b07c47b0827951abf (patch) | |
| tree | 0e2bc8f095d64fa92592ccdd406374697c7a9447 | |
| parent | b5e3dfce57e237b60e05cfda804db1910e2a1f76 (diff) | |
| download | community.vyos.net-production.tar.gz community.vyos.net-production.zip | |
ci: T9082: onboard CodeQL scanning via central reusable workflow (#66)production
🤖 Generated by [robots](https://vyos.io)
| -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 0000000..89229f8 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,30 @@ +name: "Perform CodeQL Analysis" + +on: + push: + branches: + - production + paths: + - '**' + - '!.github/**' + - '!**/*.md' + pull_request: + branches: + - production + paths: + - '**' + - '!.github/**' + - '!**/*.md' + schedule: + - cron: '14 11 * * 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', 'javascript-typescript']" |
