From 659715e925faf4e9ee3fb7a4c290a2b61a361438 Mon Sep 17 00:00:00 2001 From: bobturneruk Date: Thu, 16 Apr 2026 08:40:51 +0000 Subject: [PATCH] ci: gitleaks --- .github/workflows/gitleaks.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gitleaks.yaml diff --git a/.github/workflows/gitleaks.yaml b/.github/workflows/gitleaks.yaml new file mode 100644 index 0000000..209a422 --- /dev/null +++ b/.github/workflows/gitleaks.yaml @@ -0,0 +1,20 @@ +on: + pull_request: + branches: + - develop + - main + push: + tags: + - '*.*.*' + - '*.*.*-rc*' + +jobs: + gitleaks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Check for GitLeaks + uses: gacts/gitleaks@v1 \ No newline at end of file