fix: harden review and verifier governance

This commit is contained in:
phamnazage-jpg
2026-05-29 18:48:48 +08:00
parent 88833fac8b
commit e999d31b25
133 changed files with 2538 additions and 159 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
ROW_FILE="${1:?row file required}"
ROW_CONTENT="$(cat "$ROW_FILE")"
if [[ "$ROW_CONTENT" == *'✅ 已修复'* || "$ROW_CONTENT" == *'✅ 已完成'* || "$ROW_CONTENT" == *'✅ 已恢复'* ]]; then
echo "resolved current row should be revoked from current table" >&2
exit 1
fi
echo "CURRENT_ROW_REVOCATION_GUARD: PASS"