From 07f775adc336e84792d36c8ceeb4f1c882cfba49 Mon Sep 17 00:00:00 2001 From: "Luiz F. C. Martins" <239121271+luiz1361@users.noreply.github.com> Date: Fri, 6 Mar 2026 12:32:13 +0000 Subject: [PATCH] ci(security): add pr code security workflow --- .github/workflows/pr-code-security.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/pr-code-security.yml diff --git a/.github/workflows/pr-code-security.yml b/.github/workflows/pr-code-security.yml new file mode 100644 index 00000000..fde10666 --- /dev/null +++ b/.github/workflows/pr-code-security.yml @@ -0,0 +1,16 @@ +name: PR Code Security + +on: + pull_request: + branches: [main] + +jobs: + secret-detection: + name: Secret Detection + if: github.event_name == 'pull_request' + uses: prisma/.github/.github/workflows/secret_detection.yml@main + secrets: inherit + code-scanning: + name: Code Scanning + if: github.event_name == 'pull_request' + uses: prisma/.github/.github/workflows/code_scanning.yml@main