From 26a4414a21266ccb07f83a3e29fcb07798124e43 Mon Sep 17 00:00:00 2001 From: Mikel Blanchard Date: Fri, 14 Jun 2024 12:23:43 -0700 Subject: [PATCH] [repo] Auto-label PR workflow improvements (#5693) --- build/scripts/add-labels.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/add-labels.psm1 b/build/scripts/add-labels.psm1 index ee82ae2ebf1..60c07bc4637 100644 --- a/build/scripts/add-labels.psm1 +++ b/build/scripts/add-labels.psm1 @@ -24,7 +24,7 @@ function AddLabelsOnPullRequestsBasedOnFilesChanged { # Note: This function is intended to work on main repo and on contrib. Please # keep them in sync. - $repoLabels = gh label list --json name,id | ConvertFrom-Json + $repoLabels = gh label list --json name,id -L 200 | ConvertFrom-Json $filesChangedOnPullRequest = gh pr diff $pullRequestNumber --name-only