From 09161a1a74f8078274b6d0b0ea09c58cfa1453b5 Mon Sep 17 00:00:00 2001 From: bobturneruk Date: Wed, 15 Apr 2026 11:52:38 +0000 Subject: [PATCH] ci: gitleaks action --- .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