Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
victoralfaro-dotcms committed Sep 6, 2024
1 parent f2d21f7 commit 1857c3e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cicd_scheduled_notify-seated-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ jobs:
script: |
async function fetchOpenPrs() {
const opts = github.rest.pulls.get.endpoint.merge({
...{baseUrl: 'https://api.github.com/repos/${{ github.repository_owner }}/${{ env.REPO }}/pulls'}
...{
baseUrl: 'https://api.github.com/repos/${{ github.repository_owner }}/${{ env.REPO }}/pulls',
owner: ${{ github.repository_owner }},
repo: ${{ env.REPO }}
}
});
console.log('OJO:>> ' + JSON.stringify(opts, null, 2));
const response = github.paginate(opts);
Expand Down

0 comments on commit 1857c3e

Please sign in to comment.