Skip to content

Commit db01a33

Browse files
authored
Exclude service modules from new module verification (#6189)
1 parent fbdc7d3 commit db01a33

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/new-module-verification.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ jobs:
7676
continue
7777
fi
7878
79+
# Skip modules under services directory
80+
if [[ "$MODULE_DIR" == services/* ]]; then
81+
echo "Skipping $MODULE_DIR - modules under services/ are excluded from verification"
82+
continue
83+
fi
84+
7985
echo "New module detected: $MODULE_DIR"
8086
8187
# Check if it's a test module

0 commit comments

Comments
 (0)