Publish sanitized current homelab architecture
Some checks failed
public-safety / privacy-and-secret-scan (push) Has been cancelled

This commit is contained in:
fizzlepoof
2026-09-08 21:47:41 +00:00
commit cc35523888
13 changed files with 901 additions and 0 deletions

24
.github/workflows/public-safety.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
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 }}