Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 8f0fefc

Browse files
committed
full list
1 parent 41c3c5a commit 8f0fefc

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/wizard-ci-trigger.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ jobs:
3636
# Build lists by category
3737
CATEGORY_LIST=""
3838
APP_LIST=""
39-
APP_COUNT=0
40-
MAX_APPS=6
4139
4240
for category in $CATEGORIES; do
4341
# Fetch apps in this category
@@ -49,21 +47,13 @@ jobs:
4947
# Add to category list
5048
CATEGORY_LIST="$CATEGORY_LIST- \`/wizard-ci $category\`\n"
5149
52-
# Add apps to app list (up to max)
50+
# Add all apps to app list
5351
for app in $APPS; do
54-
if [ $APP_COUNT -lt $MAX_APPS ]; then
55-
APP_LIST="$APP_LIST- \`/wizard-ci $category/$app\`\n"
56-
APP_COUNT=$((APP_COUNT + 1))
57-
fi
52+
APP_LIST="$APP_LIST- \`/wizard-ci $category/$app\`\n"
5853
done
5954
fi
6055
done
6156
62-
# Add ellipsis if we hit the limit
63-
if [ $APP_COUNT -ge $MAX_APPS ]; then
64-
APP_LIST="$APP_LIST- ...\n"
65-
fi
66-
6757
# Use heredoc for multiline outputs
6858
{
6959
echo "categories<<EOF"

0 commit comments

Comments
 (0)