ci: refresh workflow (re-run pipelines)

This commit is contained in:
ilia 2026-05-29 21:19:50 -05:00
parent 564618b19e
commit 124b4d3b91

View File

@ -1,5 +1,5 @@
--- ---
# ci-sync: 2026-05-30T01:31:05Z # ci-sync: 2026-05-30T02:19:55Z
# Homelab CI — Node/pages lane (git-ci-01) + secret scan (git-ci-02) # Homelab CI — Node/pages lane (git-ci-01) + secret scan (git-ci-02)
name: CI name: CI
@ -85,5 +85,9 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Gitleaks - name: Gitleaks
run: | run: |
extra=""
if [ -f .gitleaks.toml ]; then
extra="--config /repo/.gitleaks.toml"
fi
docker run --rm -v "$PWD:/repo" ghcr.io/gitleaks/gitleaks:latest \ docker run --rm -v "$PWD:/repo" ghcr.io/gitleaks/gitleaks:latest \
detect --source /repo --no-banner --redact detect --source /repo --no-banner --redact ${extra}