Skip to content

Commit 03efaad

Browse files
ci: prevent catch-all from adding parent packages as wildcard extras
1 parent eb913ae commit 03efaad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
for pkg in $ALL_PKGS; do
263263
covered=false
264264
for prefix in $ASSIGNED; do
265-
if [[ "$pkg" == "$prefix" || "$pkg" == "$prefix."* ]]; then
265+
if [[ "$pkg" == "$prefix" || "$pkg" == "$prefix."* || "$prefix" == "$pkg."* ]]; then
266266
covered=true; break
267267
fi
268268
done

.github/workflows/build_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
for pkg in $ALL_PKGS; do
263263
covered=false
264264
for prefix in $ASSIGNED; do
265-
if [[ "$pkg" == "$prefix" || "$pkg" == "$prefix."* ]]; then
265+
if [[ "$pkg" == "$prefix" || "$pkg" == "$prefix."* || "$prefix" == "$pkg."* ]]; then
266266
covered=true; break
267267
fi
268268
done

0 commit comments

Comments
 (0)