From c5fe630d349318922705fe1d5eb01d311c8daaf0 Mon Sep 17 00:00:00 2001 From: Victor Alfaro Date: Fri, 6 Sep 2024 13:18:27 -0600 Subject: [PATCH] test --- .github/workflows/cicd_scheduled_notify-seated-prs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd_scheduled_notify-seated-prs.yml b/.github/workflows/cicd_scheduled_notify-seated-prs.yml index b165252bad85..ac2e18cd8374 100644 --- a/.github/workflows/cicd_scheduled_notify-seated-prs.yml +++ b/.github/workflows/cicd_scheduled_notify-seated-prs.yml @@ -21,15 +21,15 @@ jobs: with: result-encoding: string retries: 3 + retry-exempt-status-codes: 400,401 github-token: ${{ secrets.CI_MACHINE_TOKEN }} - base-url: https://api.github.com/repos/dotCMS/core/pulls + base-url: https://api.github.com/repos/dotCMS/core/pulls?per_page=100 debug: true script: | async function fetchOpenPrs() { return github.rest.pulls.get({ owner: '${{ github.repository_owner }}', - repo: '${{ env.REPO }}', - per_page: 100 + repo: '${{ env.REPO }}' }); }