Skip to content

Commit 40160fb

Browse files
committed
ci fixes
1 parent 7f6555f commit 40160fb

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/agent-boundary-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
3434
for f in "${CHANGED[@]}"; do
3535
[ -f "$f" ] || continue
36+
# Don't scan CI/workflow files
37+
[[ "$f" == .github/* ]] && continue
3638
case "$f" in
3739
*.md|*.txt|*.yml|*.yaml|*.json|*.toml|*.ts|*.tsx|*.js|*.jsx|*.sh|*.py|*.rb|*.tf|*.hcl)
3840
if grep -Einq "$FORBIDDEN" "$f"; then

.github/workflows/quality-gate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
- '**/*.sh'
3434
- '!**/*.test.*'
3535
- '!**/*.spec.*'
36+
- '!.github/**'
37+
- '!*.md'
3638
tests:
3739
- '**/*.test.*'
3840
- '**/*.spec.*'

0 commit comments

Comments
 (0)