We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6555f commit 40160fbCopy full SHA for 40160fb
2 files changed
.github/workflows/agent-boundary-check.yml
@@ -33,6 +33,8 @@ jobs:
33
34
for f in "${CHANGED[@]}"; do
35
[ -f "$f" ] || continue
36
+ # Don't scan CI/workflow files
37
+ [[ "$f" == .github/* ]] && continue
38
case "$f" in
39
*.md|*.txt|*.yml|*.yaml|*.json|*.toml|*.ts|*.tsx|*.js|*.jsx|*.sh|*.py|*.rb|*.tf|*.hcl)
40
if grep -Einq "$FORBIDDEN" "$f"; then
.github/workflows/quality-gate.yml
- '**/*.sh'
- '!**/*.test.*'
- '!**/*.spec.*'
+ - '!.github/**'
+ - '!*.md'
tests:
- '**/*.test.*'
- '**/*.spec.*'
0 commit comments