Skip to content

Commit d982a01

Browse files
authored
[CI] Skip CI for non-runtime directories (#7870)
1 parent ea59c87 commit d982a01

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/check-bypass.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
7373
can_skip_docs=true
7474
for f in $files; do
75+
if [[ "$f" =~ ^\.claude/ || "$f" =~ ^benchmarks/ || "$f" =~ ^docs/ || "$f" =~ ^dockerfiles/ || "$f" =~ ^examples/ || "$f" =~ ^tools/ ]]; then
76+
continue
77+
fi
7578
if [[ ! "$f" =~ \.(md|yaml|go)$ ]]; then
7679
can_skip_docs=false
7780
break

0 commit comments

Comments
 (0)