Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a02994-7685-7940-bf34-3555b8256018
4 lines
166 B
Bash
Executable file
4 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Block commits that add/modify any declared plaintext secret-bearing path.
|
|
set -euo pipefail
|
|
exec python3 scripts/check_secret_paths.py --staged
|