Files
homelab-showcase/.github/workflows/public-safety.yml
fizzlepoof cc35523888
Some checks failed
public-safety / privacy-and-secret-scan (push) Has been cancelled
Publish sanitized current homelab architecture
2026-09-08 21:47:41 +00:00

25 lines
469 B
YAML

name: public-safety
on:
push:
pull_request:
permissions:
contents: read
jobs:
privacy-and-secret-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check public-safe content
run: python3 scripts/check-public-safety.py
- name: Scan Git history for secrets
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}