From 7a6a493f2437f4e859bf19c714e28a688cdd11a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lison=20Fernandes?= Date: Mon, 10 Nov 2025 21:58:01 +0000 Subject: [PATCH] [PM-28041] Remove SDK Update PR changelog list size limit (#6152) --- scripts/get-repo-changelog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get-repo-changelog.sh b/scripts/get-repo-changelog.sh index 0c69edda40..520e681a46 100755 --- a/scripts/get-repo-changelog.sh +++ b/scripts/get-repo-changelog.sh @@ -17,7 +17,7 @@ CURRENT_REF="$2" NEW_REF="$3" CHANGELOG=$(gh api "repos/$REPO/compare/$CURRENT_REF...$NEW_REF" \ - --jq '.commits[] | "- \(.commit.message | split("\n")[0])"' | head -20) + --jq '.commits[] | "- \(.commit.message | split("\n")[0])"') if [ -z "$CHANGELOG" ]; then echo "No changes found between $CURRENT_REF and $NEW_REF"