Skip to content

Commit

Permalink
[CI] [chore] Bump pr list limit in dependabot-pr automation (#19387)
Browse files Browse the repository at this point in the history
Apparently the default limit is 30, so the Dependabot PR automation missed a bunch of updates
  • Loading branch information
dmitryax authored Mar 8, 2023
1 parent 9a11f2d commit 581a879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/dependabot-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PR_NAME=dependabot-prs/`date +'%Y-%m-%dT%H%M%S'`
git checkout -b $PR_NAME

IFS=$'\n'
requests=$( gh pr list --search "author:app/dependabot" --json title --jq '.[].title' | sort )
requests=$( gh pr list --search "author:app/dependabot" --limit 1000 --json title --jq '.[].title' | sort )
message=""

last_updated=""
Expand Down

0 comments on commit 581a879

Please sign in to comment.