diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-14 15:17:57 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-14 15:17:57 +0300 |
| commit | 5dd68988cc1244e9ad049afd401266d421e42b14 (patch) | |
| tree | 0e2bc8f095d64fa92592ccdd406374697c7a9447 | |
| parent | b5e3dfce57e237b60e05cfda804db1910e2a1f76 (diff) | |
| download | community.vyos.net-feature/T9082-codeql-onboard.tar.gz community.vyos.net-feature/T9082-codeql-onboard.zip | |
ci: T9082: onboard CodeQL scanning via central reusable workflowfeature/T9082-codeql-onboard
🤖 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']" |
