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
3 changes: 1 addition & 2 deletions docs/scripts/release-note.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,14 @@ for i in $(seq "$commitsCount"); do

# Check if the PR is marked as a breaking change
if "$gh" issue view "$pr" --json labels | grep -q 'pr: breaking change'; then
breakingChanges+="$line"
breakingChanges+="$line"$'\n'
fi
done
if [ "$breakingChanges" = "" ]; then
echo "No breaking changes"
else
echo "$breakingChanges"
fi
echo ""

echo "=== All changes for this release ==="
for i in $(seq "$commitsCount"); do
Expand Down