From 80300d023f4d4e82fe5d2b7aedea407c3ba2473c Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Tue, 14 Jul 2026 21:03:36 +0300 Subject: ci: T9082: onboard CodeQL scanning via central reusable workflow (#26) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/codeql.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..5da1aba --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,31 @@ +name: "Perform CodeQL Analysis" + +on: + push: + branches: + - rolling + paths: + - '**' + - '!.github/**' + - '!**/*.md' + pull_request: + branches: + - rolling + paths: + - '**' + - '!.github/**' + - '!**/*.md' + schedule: + - cron: '17 12 * * 0' + +permissions: + actions: read + contents: read + security-events: write + +jobs: + codeql-analysis-call: + uses: vyos/.github/.github/workflows/codeql-analysis.yml@production + with: + languages: "['c-cpp']" + build-mode: "none" -- cgit v1.2.3