From b34571c1ecc26a41dc6315e3e4d49a623acbdb14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Wed, 16 Feb 2022 11:00:16 +0100 Subject: [PATCH] github: fetch more PRs when triggering gitlab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By default, the API will fetch only 30 open PRs. This is enough currently as we have 35 open ones. Bump the limit to the maximum. 100 should be enough for some time. 🤞 Signed-off-by: Ondřej Budai --- .github/workflows/trigger-gitlab.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/trigger-gitlab.yml b/.github/workflows/trigger-gitlab.yml index 6a73c5738..ef7c7e8f6 100644 --- a/.github/workflows/trigger-gitlab.yml +++ b/.github/workflows/trigger-gitlab.yml @@ -34,6 +34,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: GET /repos/${{ github.repository }}/pulls + per_page: 100 - name: Checkout branch run: |