From 65f55fca434230d05d67ccd33a96e98365083a84 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/trufflehog.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/trufflehog.yml diff --git a/.gitea/workflows/trufflehog.yml b/.gitea/workflows/trufflehog.yml new file mode 100644 index 0000000..3cb6217 --- /dev/null +++ b/.gitea/workflows/trufflehog.yml @@ -0,0 +1,21 @@ +name: TruffleHog + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + trufflehog: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: TruffleHog + uses: trufflesecurity/trufflehog@main + with: + path: . + base: main + head: HEAD