Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/check-safe-outputs-conformance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ check_cross_repo() {
continue
fi

# Check if handler supports target-repo
if grep -q "target.*[Rr]epo\|targetRepo" "$handler"; then
# Check if handler supports target-repo (match explicit config-surface identifiers only)
if grep -qE "\btarget-repo\b|\btargetRepo\b|\btarget_repo\b" "$handler"; then
Comment on lines +180 to +181
# Check for allowlist validation
if ! grep -q "allowed.*[Rr]epos\|validateTargetRepo\|checkAllowedRepo" "$handler"; then
log_high "SEC-005: $handler supports target-repo but lacks allowlist check"
Expand Down