We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0570d3 commit 3f282b2Copy full SHA for 3f282b2
1 file changed
.github/workflows/public-hygiene.yml
@@ -22,8 +22,9 @@ jobs:
22
with:
23
python-version: "3.12"
24
25
- - name: Run path-level hygiene check
26
- # `--paths-only` until batch 3 finishes rewriting docs that still
27
- # carry internal voice. Once the doc rewrites land, drop the flag
28
- # so content rules also gate.
29
- run: python scripts/validate/public_repo_hygiene.py --paths-only
+ - name: Run full hygiene check (path + content rules)
+ # Full scan: path rules + content rules. Content rules include the
+ # `dangerously-skip-permissions` regex. Docs that legitimately
+ # describe the rule (3 hygiene docs under docs/) are allowlisted in
+ # `scripts/validate/public_repo_hygiene.py` itself.
30
+ run: python scripts/validate/public_repo_hygiene.py --tracked
0 commit comments