Skip to content

Commit d1d0820

Browse files
committed
Update beta-bot.yml
1 parent 3ec13e4 commit d1d0820

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/beta-bot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,15 @@ jobs:
8282
run: |
8383
dirs_length="${{ steps.load-config.outputs.dirs_length }}"
8484
dirs_json="${{ steps.load-config.outputs.dirs_json }}"
85-
echo "Found $dirs_length directories in config"
85+
echo "Found ${{ steps.load-config.outputs.dirs_length }} directories in ${{ steps.load-config.outputs.dirs_json }}"
8686
for i in $(seq 0 $(($dirs_length - 1))); do
8787
dir=$(echo "$dirs_json" | jq -r ".[$i].directory")
8888
if [ ! -d "$dir" ]; then
8989
echo "Directory not found: $dir"
9090
continue
9191
fi
9292
echo "Processing directory: $dir"
93+
echo "::notice::Processing directory: $dir"
9394
cd "$dir"
9495
pkgs_length=$(echo "$dirs_json" | jq ".[$i].packages | length")
9596
echo "Found $pkgs_length packages in $dir"

0 commit comments

Comments
 (0)