diff --git a/.github/workflows/cicd_scheduled_notify-seated-prs.yml b/.github/workflows/cicd_scheduled_notify-seated-prs.yml index 87c86d7a15e6..944e34b7c8b2 100644 --- a/.github/workflows/cicd_scheduled_notify-seated-prs.yml +++ b/.github/workflows/cicd_scheduled_notify-seated-prs.yml @@ -24,7 +24,6 @@ jobs: retry-exempt-status-codes: 400,401 github-token: ${{ secrets.CI_MACHINE_TOKEN }} base-url: https://api.github.com/repos/dotCMS/core/pulls?per_page=100 - debug: true script: | async function fetchOpenPrs() { const opts = github.rest.pulls.get.endpoint.merge({ @@ -32,7 +31,7 @@ jobs: repo: '${{ env.REPO }}' }); const response = github.paginate(opts); - console.log(JSON.stringify(response, null, 2)); + console.log('OJO:>> ' + JSON.stringify(response, null, 2)); return response.data; }