diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-14 15:17:51 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-14 15:17:51 +0300 |
| commit | e494cb756544066706912ff505134c719b72753f (patch) | |
| tree | 31860265dabc9c44f50579c58941f323f423bfc7 | |
| parent | fba5f9d9a47c2a9879adaee5be7e4ca466443476 (diff) | |
| download | vyos-documentation-feature/T9082-codeql-onboard.tar.gz vyos-documentation-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 00000000..499080b4 --- /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: '38 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']" |
