From b538c4b696263671dd5efb98d17f89b952919c47 Mon Sep 17 00:00:00 2001 From: Adrien Bouvais Date: Sun, 16 Aug 2026 14:38:17 +0200 Subject: [PATCH] Added gitleak action --- .gitea/workflows/gitleak.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/gitleak.yml diff --git a/.gitea/workflows/gitleak.yml b/.gitea/workflows/gitleak.yml new file mode 100644 index 0000000..a4fe269 --- /dev/null +++ b/.gitea/workflows/gitleak.yml @@ -0,0 +1,15 @@ +name: Build and Push Docker Images + +on: [pull_request, push] + +jobs: + build-and-push: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - uses: gitleaks/gitleaks-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}