From 2376327d4a8e763e68cf81b721373014c80e442b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:51 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/secrets-scan.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/secrets-scan.yml diff --git a/.gitea/workflows/secrets-scan.yml b/.gitea/workflows/secrets-scan.yml new file mode 100644 index 0000000..71ff0e2 --- /dev/null +++ b/.gitea/workflows/secrets-scan.yml @@ -0,0 +1,19 @@ +name: Secrets Scan + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + secrets-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Secrets Scan + uses: trufflesecurity/trufflehog@main + with: + path: . + base: main + head: HEAD