From 7bc0de96d0a26f6be04fbe7fa006440d3f0d3d4b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:57 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/gitleaks.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/gitleaks.yml diff --git a/.gitea/workflows/gitleaks.yml b/.gitea/workflows/gitleaks.yml new file mode 100644 index 0000000..cbe37cb --- /dev/null +++ b/.gitea/workflows/gitleaks.yml @@ -0,0 +1,17 @@ +name: Gitleaks + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + gitleaks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Gitleaks + uses: gitleaks/gitleaks-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}