Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ jobs:
# Get list of packages changed since main
CHANGED=$(npx lerna changed --json 2>/dev/null || echo "[]")
echo "Changed packages: $CHANGED"
echo "packages=$CHANGED" >> $GITHUB_OUTPUT

# Use heredoc for multiline JSON output
echo "packages<<EOF" >> $GITHUB_OUTPUT
echo "$CHANGED" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

# Check if there are any changed packages
if [ "$CHANGED" = "[]" ]; then
Expand Down