This is an automated email from the ASF dual-hosted git repository.
villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 40fc144 ci: increase page size of GH PR API call (#13518)
40fc144 is described below
commit 40fc144bbe595bad76ef803eda4584834afcbb8a
Author: Ville Brofeldt <[email protected]>
AuthorDate: Tue Mar 9 08:27:59 2021 +0200
ci: increase page size of GH PR API call (#13518)
---
scripts/ci_check_no_file_changes.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/ci_check_no_file_changes.sh
b/scripts/ci_check_no_file_changes.sh
index 80a89cc..e03a6ac 100755
--- a/scripts/ci_check_no_file_changes.sh
+++ b/scripts/ci_check_no_file_changes.sh
@@ -27,7 +27,7 @@ if [[ -z ${PR_NUMBER} ]]; then
exit 1
fi
-URL="https://api.github.com/repos/${GITHUB_REPO}/pulls/${PR_NUMBER}/files"
+URL="https://api.github.com/repos/${GITHUB_REPO}/pulls/${PR_NUMBER}/files?per_page=1000"
FILES=$(curl -s -X GET -G "${URL}" | jq -r '.[] | .filename')
REGEXES=()