Skip to content

Commit d556dad

Browse files
authored
Fix code review agent workflow (#18236)
1 parent f4a66e2 commit d556dad

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/scripts/code-review/build-review-matrix.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ def parse_modules() -> list[tuple[str, str]]:
3939
pairs = []
4040
for entry in sorted(raw):
4141
parts = entry.split(":")
42+
# Skip shared/helper modules (e.g. "cdi-testing") that don't follow the
43+
# <library>:<variant> layout used for real instrumentation modules.
44+
if len(parts) < 2:
45+
continue
4246
module_dir = "instrumentation/" + "/".join(parts)
4347
# Gradle module name: second-to-last:last
4448
gradle_name = f"{parts[-2]}:{parts[-1]}"

0 commit comments

Comments
 (0)