mirror of
https://github.com/selfxyz/self.git
synced 2026-02-21 03:00:36 -05:00
* chore: add secret scanning setup * fix: correct GitGuardian action path * cr feedbacak * test husky commit * pr feedback * fix workflows * tweaks * fix versions * upgrade: migrate from husky v8 to v9 - Update husky from ^8.0.0 to ^9.1.7 - Change prepare script from 'husky install' to 'husky' - Remove v8 hook structure (shebang, husky.sh sourcing) - Delete .husky/_/ directory as it's not needed in v9 - Maintain gitleaks pre-commit hook functionality * coderabbitai feedback
6 lines
197 B
Plaintext
Executable File
6 lines
197 B
Plaintext
Executable File
if ! yarn gitleaks; then
|
|
echo "❌ Gitleaks scan failed. Please review the output above and fix any issues."
|
|
echo "💡 To skip this check temporarily, use: git commit --no-verify"
|
|
exit 1
|
|
fi
|