From 4207048d2577628213174ee05b41f64581d8c64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Bri=C3=A8re?= Date: Tue, 24 Jun 2025 17:09:36 +0200 Subject: [PATCH] feat: add security scan workflow --- .github/workflows/security_scan_repo.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/security_scan_repo.yml diff --git a/.github/workflows/security_scan_repo.yml b/.github/workflows/security_scan_repo.yml new file mode 100644 index 0000000..f547565 --- /dev/null +++ b/.github/workflows/security_scan_repo.yml @@ -0,0 +1,24 @@ +name: Security Scan Repo + +on: + push: + branches: + - main + - master + - develop + - tools + - release/* + schedule: + - cron: "0 10 * * 1" + +permissions: + contents: read + pull-requests: write + security-events: write + checks: write + actions: read + +jobs: + security_scan: + uses: ZeroGachis/.github/.github/workflows/security_scan_repo.yml@v4 + secrets: inherit