ci: refresh workflow (re-run pipelines)

This commit is contained in:
ilia 2026-05-29 21:18:45 -05:00
parent e8df4389ca
commit c07fd159ec

View File

@ -1,5 +1,5 @@
---
# ci-sync: 2026-05-30T01:29:46Z
# ci-sync: 2026-05-30T02:18:51Z
# Homelab CI — Python lane (git-ci-01) + secret scan (git-ci-02)
# Skip: @skipci in branch name or commit message
name: CI
@ -76,5 +76,9 @@ jobs:
fetch-depth: 0
- name: Gitleaks
run: |
extra=""
if [ -f .gitleaks.toml ]; then
extra="--config /repo/.gitleaks.toml"
fi
docker run --rm -v "$PWD:/repo" ghcr.io/gitleaks/gitleaks:latest \
detect --source /repo --no-banner --redact
detect --source /repo --no-banner --redact ${extra}